Update copyright for 2024#842
Merged
Merged
Conversation
for f in $(\grep Copyright -l . -r); \ do echo $f; cat $f | sed "s/Copyright (C) 2020-2023 CERN and UCLouvain/Copyright (C) 2020-2024 CERN and UCLouvain/" > $f.new; \ \mv $f.new $f; done
…to 2024 for f in $(\grep 'Further modified' . -r -l); \ do echo $f; cat $f | sed -E "s/(.*Further modified.*)2023\)(.*)/\12024)\2/" > $f.new; \ \mv $f.new $f; done
for f in PLUGIN/CUDACPP_SA_OUTPUT/patchMad.sh allGenerateAndCompare.sh checkFormatting.sh diffCode.sh fixRepo.sh generateAndCompare.sh switchBKP.sh; do echo $f; chmod +x $f; done This is because changing copyright resulted in mode change 100755 => 100644 epochX/cudacpp/CODEGEN/PLUGIN/CUDACPP_SA_OUTPUT/patchMad.sh mode change 100755 => 100644 epochX/cudacpp/CODEGEN/allGenerateAndCompare.sh mode change 100755 => 100644 epochX/cudacpp/CODEGEN/checkFormatting.sh mode change 100755 => 100644 epochX/cudacpp/CODEGEN/diffCode.sh mode change 100755 => 100644 epochX/cudacpp/CODEGEN/fixRepo.sh mode change 100755 => 100644 epochX/cudacpp/CODEGEN/generateAndCompare.sh mode change 100755 => 100644 epochX/cudacpp/CODEGEN/switchBKP.sh
Member
Author
|
I had forgotten to fix the execution mode of some files. Now all is ok an dthe CI passes. Ready to merge when approved. |
Member
Author
|
Thanks Olivier! |
Member
Author
|
Note, this addresses issue #817 (there was a question whether to update the year range or not - in the end this is done here) |
valassi
added a commit
to valassi/madgraph4gpu
that referenced
this pull request
May 15, 2024
…pdates in PR madgraph5#842) into jtmk Fix conflicts: epochX/cudacpp/CODEGEN/PLUGIN/CUDACPP_SA_OUTPUT/madgraph/iolibs/template_files/gpu/cudacpp.mk epochX/cudacpp/CODEGEN/PLUGIN/CUDACPP_SA_OUTPUT/madgraph/iolibs/template_files/gpu/cudacpp_src.mk
This file contains hidden or 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
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.
Hi @oliviermattelaer this is a minor PR updating the copyright to 2024 in view of the release. Should be non controversial, but can you please review and approve? Thanks Andrea