-
Notifications
You must be signed in to change notification settings - Fork 62
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
Fix SPDX FileCopyrightText for .xcf file #31
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: FeRD (Frank Dana) <ferdnyc@gmail.com>
The .spdx file is auto-generated by the I'll look into what |
My guess is, reuse just doesn't support (Which would, in fact, be...) $ grep -a -i copyright usbview_logo.xcf
[...]
~��>�U����U>�U��q���UU*�8�8 �q�q�qƍ��8�8 �U8��Uq�U������+�8�����U���8���U�8�8�UUƍU������8���8�����U������8��UU~�vS;)�Copyright (C) 1999-2012 ...�!?� "
�%$����#����*�gimp-text-layer�(markup "<markup><span size=\"12288\"><span font=\"Bitter\">Copyright (C) 1999-2012\nGreg Kroah-Hartman <greg@kroah.com></span></span></markup>") The way to give reuse usable copyright and license metadata for that file would be to create either a Then, reuse should use that data when generating the (The [[annotations]]
path = "usbview_logo.xcf"
precedence = "override"
SPDX-FileCopyrightText = "(...copyright statement...)"
SPDX-License-Identifier = "(SPDX-license-expression)" |
version = 1
SPDX-PackageName = "Some project"
SPDX-PackageSupplier = "Jane Doe"
SPDX-PackageDownloadLocation = "https://example.com/"
SPDX-PackageComment = "Some rights reserved" |
...Needless to say, if the Since, right now, there's nothing in the repo — other than some statements at the top of the (Edit: And now that I'm looking at it, the |
Yes, the I'll be moving this to use |
Thank f*ck! \o/ (No, I'm not biased at all. ...Actually, I'm personally more comfortable/familiar with CMake, but Meson is great. Certainly better than autotools. Then again, two rusty nails shoved in a potato...) |
It strikes me that maybe the (If it's not accurate to the current state, seems like there's little point, since git is ultimately the authority on file identity for the checked-in code.) |
Presumably it was auto-extracted (by
reuse
?), but theusbview.spdx
file contained a corruptedFileCopyrightText
string for theusbview_logo.xcf
file, with binary line-noise embedded into the field and some unbalanced closing markup at the end. Stripped all that out.