@libreleah @LorenzoAncora Smells to me like they got tired of distros breaking things with haphazard packaging, and instead of clarifying that you go to the distro first for support, they just decided to pull the legally-dubious option of "switch to a license that disallows packaging" to attempt to force distro maintainers to stop packaging it.
And since they accepted lots of outside contributions, presumably without a CLA, including some that are almost certainly eligible for copyright protection if they were to be used elsewhere, I'm not sure they can re-license it from GPLv3+...
@becomethewaifu @LorenzoAncora You can grep for copyright names other than the author's, also:
git shortlog -sne
This gives you a list of authors and how many commits they pushed. Then for example you can do:
git whatchanged --author="author's name"
You can then replace "whatchanged" with "show" in each instance:
git show COMMITID
This shows the diff. Then run:
git blame file
"file" is the file that changed. Find the lines created by that diff.
Find names other than the lead maintainer.