adafruit / Adafruit_CircuitPython_PN532

CircuitPython driver for the PN532 NFC/RFID Breakout and PN532 NFC/RFID Shield
MIT License
91 stars 47 forks source link

Ran pre-commit, added licenses #45

Closed evaherrada closed 3 years ago

kattni commented 3 years ago

@dherrada Please verify this is a valid solution, or update it to whatever the appropriate solution is determined to be.

FoamyGuy commented 3 years ago

Maybe wrapped with XML elements? I found this excerpt: image on this page: https://spdx.github.io/spdx-spec/4-file-information/#48-copyright-text

Which I think suggests this, but I haven't found an example that actually contains line breaks.

also I'm not sure if it would mean like this:

FileCopyrightText: <text> Copyright 2008-2010 John Smith 
2003 Another Name Here</text>

or like this:

FileCopyrightText: <text> Copyright 2008-2010 John Smith </text>
<text> 2003 Another Name Here</text>
FoamyGuy commented 3 years ago

I found one for a different property with the same wording that does have an example: image

Assuming that carries over then this should be correct:

FileCopyrightText: <text> Copyright 2008-2010 John Smith 
2003 Another Name Here</text>

I will add a commit to make it like that.