forked from dashpay/dash
-
Notifications
You must be signed in to change notification settings - Fork 714
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Build] Bump copyright year to 2023 #2803
Merged
Fuzzbawls
merged 9 commits into
PIVX-Project:master
from
Fuzzbawls:2023_bump-copyright-year
Mar 5, 2023
Merged
[Build] Bump copyright year to 2023 #2803
Fuzzbawls
merged 9 commits into
PIVX-Project:master
from
Fuzzbawls:2023_bump-copyright-year
Mar 5, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The copyright_header.py script will process Objective-C source files (*.mm) as other ones.
Includes .sh and .bash-completion files in the script as well
This change prevents updating copyright years from "2021" to "2021-2017".
-BEGIN VERIFY SCRIPT- find ./ -type f -name '*.mm' -exec sed -i "s/The PIVX developers/The PIVX Core developers/g" {} + find ./ -type f -name '*.sh' -exec sed -i "s/The PIVX developers/The PIVX Core developers/g" {} + find ./test -type f -name '*.py' -exec sed -i "s/The PIVX developers/The PIVX Core developers/g" {} + find ./contrib -type f -exec sed -i "s/The PIVX developers/The PIVX Core developers/g" {} + find ./src -type f \( -name '*.cpp' -o -name '*.h' \) -exec sed -i "s/The PIVX developers/The PIVX Core developers/g" {} + ./contrib/devtools/copyright_header.py insert src/qt/pivx/governancewidget.cpp ./contrib/devtools/copyright_header.py insert src/test/librust/json_test_vectors.h ./contrib/devtools/copyright_header.py insert src/test/sha256compress_tests.cpp ./contrib/devtools/copyright_header.py update ./ -END VERIFY SCRIPT-
Liquid369
approved these changes
Feb 13, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tACK 76d868c
Fits for the changes with the aforementioned PR's
Build runs fine for me in my test
panleone
approved these changes
Mar 4, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
utACK 76d868c
working as expected
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
2023
copyright_header.py
script from the following upstream PRs:The PIVX Core developers
While on first glance this PR looks daunting in the number of files it touches, the HEAD commit is the one doing most of the work here, which is a scripted-diff commit. scripted-diff commits are commits that are done by way of deterministically reproducible shell commands that are notated in the commit message, and which are checked in CI.