⚠️ NOTA BENE: A GitHub account is required for the New License Workflow. If you do not have a GitHub account yet, you must create one (for free) to continue with the workflow.
-
This document provides guidance and checklists for SPDX legal team members who are assigned to shepherd a new license request.
-
The instructions here assume the requester has already submitted the new license/exception request via the SPDX online tools. Note that it is also possible for license requests to be submitted directly as Issues in the GitHub repo; when this occurs, they will not appear on the SPDX online tools page.
-
New license requests are to be assigned to an SPDX legal team member and that person is responsible for following the request through to its final determination. Make sure to add yourself as the Assignee in the license request issue here on GitHub, add the label
new license/exception request
, and add the appropriate release milestone to the issue.
- Is the license or exception already on the SPDX License List? Has it been submitted and rejected previously? (If yes, go to "If license not accepted")
- Is the license or exception similar enough to an existing license or exception that additional markup could accommodate a match and there is no need to add the license?
- Use Alan’s diff tool to compare to existing licenses.
- If it’s a case that additional markup would create match, then may want to discuss with legal team to ensure markup is non-substantive or differences in text do not alter legal meaning (if so, this cuts towards adding a new license). For more on this see the Matching Guidelines, guideline #2 in particular.
- If additional markup can accommodate the license, then the license does not need to be added: inform the requester, comment on the issue as such, then create a PR for the existing license with the additional markup, and close issue once the PR has been merged.
- If the submitter is not the license author or steward, ask for that contact or try to find that person or organization to make them aware the license has been submitted.
- Check the submission for any other missing information, e.g., working URL, examples of use, full text, standard header, etc. You can find the field definitions in the DOCS/license-fields document.
Ask the submitter for any additional info needed, preferably via the GitHub issue, if possible. Record any updates there.
- The "standard header" or "official license header" is defined in section 1.1.1 of the SPDX Matching Guidelines as "specific text specified within the license itself to be put in the header of files."
- Review the following, bring any questions to legal team:
- Is this an open source license?
- Is the short identifier unique? Does this license have a short identifier that is used elsewhere already (e.g., Fedora)?
- Does this license need markup for matching (omitable or replaceable text)?
- Record all notes in Issue
- If the legal team determines that more information is needed, the information should be requested in the Issue, tagging the requester and/or steward(s) and add the label
new license/exception: waiting for submitter
. If a response is not received within a reasonable amount of time, a follow-up request should be sent. If a response is not received to either request the next release (or two, if close to a release at first correspondence), the Issue will be closed.
- If the license/exception has not been accepted (for whatever reason, including it is already represented on the license list), make a note in the issue as to why, add the label to
new license/exception: Not accepted
, inform the submitter, update the issue as needed, and close.
-
If the license/exception is accepted, make a note in the issue, add the label
new license/exception: Accepted
. -
The final step is to create the license XML and test .txt files.
-
While you can do this using the SPDX Online tools, you can also clone (fork) the license-list-XML repository (repo), make the edits on your clone of the repo, then send a pull request. The clone-and-edit process is currently necessary for the test .txt file regardless, as the SPDX Online tools do not yet support adding a test .txt file (see issue here).
-
The following steps assume you're working from a clone of the repo, but we have some basic steps afterwards if you'd like to edit the XML using the SPDX Online tools.
⚠️ NOTA BENE: All files rely on thelicenseId
(short identifier) for the license. The XML and test .txt files must be named identically using thatlicenseId
value. For instance, if you're adding the K-9 Robotic Dog Hardware License with alicenseId
of K-9RDHL, you will have an XML file namedK-9RDHL.xml
and a test .txt file namedK-9RDHL.txt
.
- The test files are in the
test/simpleTestForGenerator/
directory of your clone of the license-list-XML repo. - Locate the canonical text for the license. There should be a link to this in the issue, but if there isn't please ask for it from the license steward. Don't proceed until you have confirmed that you have the canonical text.
- Copy the text of the license and add it to an appropriately named .txt file (see above for naming guidelines). This must be UTF-8 encoded. Special characters such as smart quotes should be avoided. Do try to keep formatting elements such as section indentation, using spaces to make the indentation rather than using tabs. For example, here's one of many indented sections in the CC-BY-NC-ND-3.0-IGO.txt file:
8. Miscellaneous
a. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.
- Save the file and commit it to your clone of the repository.
That's it! The test .txt file is now ready to go and you can move on to the XML file. It's slightly trickier than the test .txt file, but not much (at least not in the basic case that we cover here).
- The license XML files are in the
src
directory. If the license you're working on does not yet have an XML file there, find the XML file for a similar license then copy it to be the basis of the new license XML file. For instance, for the K-9 Robotic Dog Hardware License (henceforth referred to by its licenseId), you could copy the CERN Open Hardware License v1.1 file,CERN-OHL-1.1.xml
toK-9RDHL.xml
, then go from there. - Set the attributes in the
license
tag:- licenseId: Set to the licenseId for that license. This must match the licenseId used for to name both the XML and test .txt files.
- name: The canonical name of the license. This must match the name of the license in the test .txt file. The value set in this attribute is what will appear in the SPDX License List.
- isOsiApproved: Set to
true
if the license has been approved by the Open Source Initiative andfalse
else. - listVersionAdded: Set to the SPDX License List Version in which this license is being added. This version is set in the Milestone assigned to the issue.
- If you copied the XML file of another license, remove any attributes used for that license but not needed for this new one.
- Set the value of the
crossRef
tag to the URL for the canonical version of the license.- This should be the same as the URL used for the text added to the test .txt file above.
- If the XML file you copied includes any additional
crossRef
tags, make sure you remove them.
- Optionally, include a
notes
tag with any miscellaneous notes that would be relevant to users of the license.notes
is typically used to explain things like why a license has an entry on the list separate from another identical or nearly-identical license.- License interpretation comments should generally not be included in a
notes
tag.
- Add the text of the license in the
text
tag. There are several special things to pay attention to here:- The text must be the same text used in the test .txt file above. This is why it makes sense to do the test .txt file before the XML: it makes it easy to cut/paste the correct text into the XML file.
- The title of the license should be wrapped in
<titleText></titleText>
tags. The value here should match the value in thename
attribute in thelicense
tag above. - Every paragraph should be wrapped in
<p></p>
tags, including the text in the<titleText>
tag. Text in list tags (see below) do not need to be wrapped in<p>
tags. - Lists—either ordered (numbered/lettered) or unordered (bullets)—must be formatted with
list
,item
, andbullet
tags. Lists can be nested. It's much easier to show this than explain it, so here's a basic example (see also CC-BY-NC-ND-3.0-IGO for a real world example):
<list>
<item>
<bullet>1.</bullet> text 1
</item>
<item>
<bullet>2.</bullet> text 2
<list>
<item>
<bullet>*</bullet> text *
</item>
<item>
<bullet>-</bullet> text -
</item>
</list>
</item>
<item>
<bullet>3.</bullet> text 3
<list>
<item>
<bullet>a.</bullet> text a
</item>
<item>
<bullet>b.</bullet> text b
<list>
<item>
<bullet>i.</bullet> text i
</item>
<item>
<bullet>ii.</bullet> text ii
</item>
</list>
</item>
</list>
</item>
</list>
- Save the file and commit it to your clone of the repository.
You're done! Yes, there may be more advanced cases where more work than this is required. If you don't add licenses often, it's unlikely the core team will have assigned you something like that, but if they did or you have any questions at all, please ask! They love to help!
When you send the pull request (below), our CI/CD tool will run all of the tests to make sure everything is OK. However, often it's much faster to test things locally first. There are three ways to do this:
Most web browsers "speak" XML, which means they're a quick and easy way to tell whether you have valid XML in your file. If you've messed something up (forgotten a closing tag, for instance), the browser will give you an error. If everything is A-OK, the browser will show you your XML file.
To test this, either point your browser at the XML file in your file system using file://
or drag/drop the XML file onto your browser window.
Of course, keep in mind that this only tests that the XML file is valid XML. The next tests below can be used to check whether the XML file correctly matches to the test text file.
You can run (on your local machine) the same tests that the CI/CD tool does automatically when you make a pull request. They might run a little faster on your machine, and of course this doesn't require approval like the CI/CD pipeline does if you're a first-time contributor to the License List!
This requires that you're familiar with the command line and ensuring that script dependencies are all installed. Learning these things is left as an exercise for the reader.
- Change to the directory where you've cloned the
license-list-XML
repo - Run
make validate-canonical-match
- Go make a cup of tea or something ☕️, because this will take a few minutes to complete
If you don't feel like a cup of tea right now, you can run the make validate-canonical-match
process against a single file instead of the entire corpus of licenses:
- Change to the directory where you've cloned the
license-list-XML
repo - Run
./test-one-license licenseId
, replacing (of course) thelicenseId
with (naturally) the licenseId of the license in question - Don't make that cup of tea, since you won't have time
The CI/CD pipeline will fail if it detects an existing license with matching license text. If this occurs, manually review the duplicate license. If this is expected (e.g. if the duplicate license is a deprecated version of the same license), add the following to the expected-warnings file:
,"Duplicates licenses: DUPLICATE_LICENSE_ID, MY_LICENSE_ID","Duplicates licenses: MY_LICENSE_ID, DUPLICATE_LICENSE_ID"
where DUPLICATE_LICENSE_ID
is the license ID of the duplicate license and MY_LICENSE_ID
is the license ID of the license you are adding.
If the duplicate license is not expected and you believe the licenses are indeed different, review the license XML for both licenses for any <Optional>...
or <Alt ...
tags that may cause a match.
You're nearly done! All that's left is for you to tell the team you're done and the work is ready for review and merging.
To do that, send a pull request (commonly known as a PR) to the project.
If you've never sent a PR before, or if you hit any problems, please let us know! We'll help you with the process so you can successfully contribute to the license list.
If the PR will take care of the issue's request, then in the PR description (not the PR title or comments, and not the commit message) you should include a line that says Fixes #
, with the issue number immediately following the hash sign. That way, when the PR is merged, GitHub will automatically close the issue as well.
After you send your PR, the team will have a look and provide feedback. It might be that more changes are needed. If that's the case, simply make the changes in your clone of the repo and then commit them. Your PR will automatically update with the changes, so you won't have to do anything special.
Once everything looks good, the team will merge your PR into the main list.
🍾 Voila! 🍾 You've just landed a patch in an open source project. Congratulations!
The SPDX Online tools are an option for editing the XML file but currently the tools can't help you add a test .txt file. Hopefully we'll be able to add that functionality in the future, but for now we recommend you use the "clone and edit" option detailed above when adding a new license. However, should you choose to try the online tools, here are some instructions:
- Go to SPDX Online tools and to License Requests; click on your license and “edit XML”. Review XML file - make sure to include or check:
- The current XML output does not implement some of XML tagging and may mark every new line with a paragraph tag depending on input. If this has happened, it may be more efficient to re-submit the license text, using a wrapped text version.
- Make sure to include listVersionAdded= and the correct license list version number for the upcoming release
- Check for a standard license header
- Check if any notes should be added (see the field description in the DOCS/license-fields document for more information)
- Check that we have a working URL for the license text in the wild. If using a link in GitHub, include a link to a specific commit
- Check all the XML formatting: the current XML output does not insert the bullet or list tags. Use a previously submitted license as reference for how to format
- If you have questions about text that could be optional or could be replaceable, add a comment to the PR, once made or add a reviewer to check it
- Before submitting the PR, you may want to run the test suite locally to catch any errors when comparing the XML against the test .txt file. Typically you can do this by running “make validate-canonical-match” from your checked-out copy of the license-list-XML repo.
- Once the XML is done, “submit changes” in the tool, which will create a new PR in the repo. Tag the PR to be reviewed by at least one other member of the legal team before merging.
- Once the PR is created in the repo, add a .txt file for the license in the test/simpleTestForGenerator directory
- Check to see if the PR passes the automated test suite on check-in. If it does not pass, evaluate the cause and resolve it. If you need assistance, contact one of the technical leads (@goneall or @zvr) for assistance.
- Once review has been completed and there are no further question, merge PR, and close issue.