Skip to content
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

Drop my copyright and some license tags #9302

Merged

Commits on Jun 14, 2018

  1. Drop my copyright headers

    perl -i -0pe 's/\s*Copyright © .... Zbigniew Jędrzejewski.*?\n/\n/gms' man/*xml
    git grep -e 'Copyright.*Jędrzejewski' -l | xargs perl -i -0pe 's/(#\n)?# +Copyright © [0-9, -]+ Zbigniew Jędrzejewski.*?\n//gms'
    git grep -e 'Copyright.*Jędrzejewski' -l | xargs perl -i -0pe 's/\s*\/\*\*\*\s+Copyright © [0-9, -]+ Zbigniew Jędrzejewski[^\n]*?\s*\*\*\*\/\s*/\n\n/gms'
    git grep -e 'Copyright.*Jędrzejewski' -l | xargs perl -i -0pe 's/\s+Copyright © [0-9, -]+ Zbigniew Jędrzejewski[^\n]*//gms'
    keszybz committed Jun 14, 2018
    Configuration menu
    Copy the full SHA
    0cd41d4 View commit details
    Browse the repository at this point in the history
  2. Fix SPDX license tags

    keszybz committed Jun 14, 2018
    Configuration menu
    Copy the full SHA
    58f21e6 View commit details
    Browse the repository at this point in the history
  3. Drop more license boilerplate

    $ git grep -e 'This program is free software' -l |grep -v LICENSE | \
      xargs perl -i -0pe 's/ \* This program.*?for more details.\s*\*\n( \* You should have.*licenses.>.\n)?//gms'
    
    For some reason they were missed previously. All those files seem to
    have proper SDPX tags.
    keszybz committed Jun 14, 2018
    Configuration menu
    Copy the full SHA
    50d1760 View commit details
    Browse the repository at this point in the history