THE SPDX WIKI IS NO LONGER ACTIVE. ALL CONTENT HAS BEEN MOVED TO https://github.com/spdx
Difference between revisions of "Technical Team/Proposals/2010-11-16/Or later version licensing"
Line 1: | Line 1: | ||
− | <h2>Status</h2> | + | <h2>Status</h2><p> |
− | <strong>Draft</strong> | + | <strong>Draft</strong></p> |
<h2>Issue</h2> | <h2>Issue</h2> | ||
Line 38: | Line 38: | ||
<h4>License or later version</h4> | <h4>License or later version</h4> | ||
− | <pre><code> | + | <pre><code><Package> |
+ | <DeclaredLicense> | ||
+ | <LicenseOrLaterVersion> | ||
+ | <BaseLicense rdf:about="license:GPLv2" /> | ||
+ | </LicenseOrLaterVersion> | ||
+ | </DeclaredLicense> | ||
+ | </Package></code></pre> | ||
<h3>Changes</h3><h3> | <h3>Changes</h3><h3> | ||
<p>These changes are available in the <a href="https://github.com/pezra/spdx-spec/tree/or-later-version-licensing">'or-later-version-licensing</a> branch of <a href="https://github.com/pezra/spdx-spec.git">https://github.com/pezra/spdx-spec.git</a>. A full version of the spec with these changes is attached, as is a patch file to implement these changes.</p></h3> | <p>These changes are available in the <a href="https://github.com/pezra/spdx-spec/tree/or-later-version-licensing">'or-later-version-licensing</a> branch of <a href="https://github.com/pezra/spdx-spec.git">https://github.com/pezra/spdx-spec.git</a>. A full version of the spec with these changes is attached, as is a patch file to implement these changes.</p></h3> |
Revision as of 17:50, 16 November 2010
Contents
- 1 Status
- 2 Issue
- 3 Proposal
- 3.1 Examples
- 3.2 Changes
- 3.3 These changes are available in the <a href="https://github.com/pezra/spdx-spec/tree/or-later-version-licensing">'or-later-version-licensing</a> branch of <a href="https://github.com/pezra/spdx-spec.git">https://github.com/pezra/spdx-spec.git</a>. A full version of the spec with these changes is attached, as is a patch file to implement these changes.
Status
Draft
Issue
There is not a way to express that the user may choose, at their discretion, to following the terms and conditions of a specified license or any later version of that license. In some ways this is similar to a simple disjunctive licensing declaration. However, the set of licenses changes over time so separate way of expressing this licensing information is required.
Use cases
The set of use cases we need to be able to describe in SPDX is:
A standard license of a particular version (such as GPL version 2) and every later version of that license
A non-standard license of a particular version and every later version of that license.
Unversioned license declaration (such as "GPL").
Proposal
Introduce a license set, LicenseOrLaterVersion
that
explicitly represents a specify license all its later versions. It
would be left to tools and/or humans to determine the actual licenses
that should be included in this set at any specific point in time.
The definition of `License` would not change. The `DeclaredLicense` and `DetectedLicense` properties would be updated to allow their value to be a `License` or `LicenseOrLaterVersion`.
Examples
License or later version
<code><Package> <DeclaredLicense> <LicenseOrLaterVersion> <BaseLicense rdf:about="license:GPLv2" /> </LicenseOrLaterVersion> </DeclaredLicense> </Package></code>