Details
-
Task
-
Resolution: Done
-
P0: Blocker
-
None
-
None
-
RC-QTQAINFRA-562-01
Description
Files created should only have Digia as the copyright holder
Files modified should have both Android and Digia as the copyright holder
see https://codereview.qt-project.org/30618 as a reference for new files:
The following script should help:
git log -p --reverse release/v2.2.1 ^master ^db6cb1467ddc6f3f1618dc8da0a568a6b6769545 | perl -n -E 'if (m{^--- (.+)}) { $rem = $1; $rem =~ s{^a/}{}; } elsif (m{^\+\+\+ (.+)}) { $add = $1; $add =~ s{^b/}{}; if ($CREATED{ $add }) {} elsif ($rem eq q(/dev/null)) { say qq(Created: $add); $CREATED{ $add } = 1; } elsif ($add eq q(/dev/null)) { say qq(Deleted: $rem) } else { say qq(Modified: $rem) } }' | sort | uniq