#4 Initial conversion of Fedora good licenses to TOML format
Merged 3 years ago by dcantrell. Opened 3 years ago by dcantrell.
fedora-legal/ dcantrell/license-data master  into  master

file added
+23
@@ -0,0 +1,23 @@ 

+ * Export the Google spreadsheet to a TSV file (not CSV)

+ 

+ * Run the script this way:

+ 

+       ./tsv2toml.py input.tsv $(pwd)/approved

+ 

+   The input.tsv file is the exported spreadsheet from Google.  The

+   second argument to the script is the subdirectory to store the

+   licenses.  Right now we're only writing out approved licenses.

+ 

+ * The script will display which rows caused problems and save the bad

+   rows to "bad.tsv" which can be imported in to another Google

+   spreadsheet if you want.

+ 

+ Ideally we will just remedy the problem rows and run this script again

+ until everything is imported.  At that point the spreadsheet can be

+ discarded and all continuing work will be in the git repo.  Of course,

+ the work for unapproved licenses and special case things can be

+ handled before we completely discard the spreadsheet side of the

+ information.

+ 

+ --

+ David Cantrell <dcantrell@redhat.com>

file added
+63
@@ -0,0 +1,63 @@ 

+ # All of the files in this provide information about a single approved

+ # Fedora license.  The file format is TOML and the sections allowed

+ # are described below.  For information on the TOML standard, see

+ # https://toml.io/en/

+ 

+ # All files must provide a 'license' block.

+ [license]

+ 

+ # The SPDX expression is the SPDX license expression as evaluated by

+ # Fedora.  It is a string wrapped in double quotes.  For example:

+ #

+ #     spdx_expression = "GPL-3.0-or-later WITH Autoconf-exception-3.0"

+ #

+ # This expression is constructed using valid SPDX license and

+ # exception identifiers found at https://spdx.org/

+ #

+ # This is a required field.

+ expression = ""

+ 

+ # The status of this license expression.  It is a string wrapped in

+ # double quotes.  Generally 'approved', but may be any of:

+ #

+ #     approved

+ #     not-approved

+ #     approved-for-fonts

+ #     approved-for-contents

+ #

+ # This is a required field.

+ status = ""

+ 

+ # Optional URL(s) to the license text or the contents of the license

+ # itself.  This field is a multiline literal string.  For example:

+ #

+ #     text = '''

+ #     https://www.gnu.org/licenses/gpl-3.0-standalone.html

+ #     https://www.gnu.org/licenses/autoconf-exception-3.0.html

+ #     '''

+ #

+ # In cases where the license is not available online, you may put the

+ # text of license in this multiline field.

+ #

+ # This field is optional.

+ #text = '''

+ #'''

+ 

+ # The 'fedora' block contains additional information for the Fedora

+ # Project regarding the license.  This section is optional and any of

+ # the fields in it are optional.

+ #[fedora]

+ 

+ # The name Fedora uses to refer to this license.  This field is a

+ # string wrapped in double quotes.

+ #name = ""

+ 

+ # The short abbreviation Fedora uses to represent this license in RPM

+ # packages.  This field is a string wrapped in double quotes.

+ #abbreviation = ""

+ 

+ # Any additional notes, history, or other information about this

+ # license and its use in Fedora.  This field is a multiline literal

+ # string.

+ #notes = '''

+ #'''

file removed
-27
@@ -1,27 +0,0 @@ 

- # Each license file must be in a *.yaml file with these fields.  If a

- # field has no value, exclude it from the entry.  Do not use quote

- # marks around strings.  There should be one license per file.  The

- # name of the file is generally the short abbreviation of the license,

- # with underscores replacing spaces.

- 

- ---

- # This field can be "yes" or "no"

- approved: yes|no

- 

- # The established Fedora license abbreviation, if available.  e.g.,

- # the GNU General Public License v2.0 or later is called GPLv2+ in

- # Fedora.

- fedora_abbrev: STRING

- 

- # The full name of the license as Fedora documents it, if available.

- fedora_name: STRING

- 

- # The SPDX (https://spdx.org/licenses) license abbreviation, if

- # available.

- spdx_abbrev: STRING

- 

- # The full name of the license in the SPDX listing, if available.

- spdx_name: STRING

- 

- # A URL to the full text of the license, if available.

- url: URL

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "0BSD"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/ZeroClauseBSD

+ '''

+ 

+ [fedora]

+ 

+ name = "Zero-Clause BSD"

+ abbreviation = "0BSD"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "AAL"

+ status = "approved"

+ 

+ text = '''

+ http://opensource.org/licenses/attribution.php

+ '''

+ 

+ [fedora]

+ 

+ name = "Attribution Assurance License"

+ abbreviation = "AAL"

file added
+17
@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "ADSL"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense

+ '''

+ 

+ [fedora]

+ 

+ name = "Amazon Digital Services License"

+ abbreviation = "ADSL"

+ 

+ notes = '''

+ Permissive license

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "AFL-3.0"

+ status = "approved"

+ 

+ text = '''

+ http://opensource.org/licenses/afl-3.0.php

+ '''

+ 

+ [fedora]

+ 

+ name = "Academic Free License"

+ abbreviation = "AFL"

+ 

+ notes = '''

+ SPDX List also has AFL-1.1, AFL-1.2, AFL-2.0, AFL-2.1

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "AGPL-1.0-only"

+ status = "approved"

+ 

+ text = '''

+ http://www.affero.org/oagpl.html

+ '''

+ 

+ [fedora]

+ 

+ name = "Affero General Public License 1.0"

+ abbreviation = "AGPLv1"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "AGPL-3.0-only"

+ status = "approved"

+ 

+ text = '''

+ http://www.fsf.org/licensing/licenses/agpl-3.0.html

+ '''

+ 

+ [fedora]

+ 

+ name = "Affero General Public License 3.0"

+ abbreviation = "AGPLv3"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "AGPL-3.0-or-later"

+ status = "approved"

+ 

+ text = '''

+ http://www.fsf.org/licensing/licenses/agpl-3.0.html

+ '''

+ 

+ [fedora]

+ 

+ name = "Affero General Public License 3.0 or later"

+ abbreviation = "AGPLv3+"

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "AMDPLPA"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License

+ '''

+ 

+ [fedora]

+ 

+ name = "AMD's plpa_map.c License"

+ abbreviation = "AMDPLPA"

+ 

+ notes = '''

+ BSD variant. Single use case?

+ '''

file added
+18
@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "AML"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Apple_MIT_License

+ '''

+ 

+ [fedora]

+ 

+ name = "Apple MIT License"

+ abbreviation = "AML"

+ 

+ notes = '''

+ MIT-like license with a provision regarding no patent grant for derivative

+ works.

+ '''

file added
+17
@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "AMPAS"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD

+ '''

+ 

+ [fedora]

+ 

+ name = "Academy of Motion Picture Arts and Sciences BSD"

+ abbreviation = "AMPAS BSD"

+ 

+ notes = '''

+ BSD variant; specifically disclaims rights to trademarks, patents, etc.

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "ANTLR-PD"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/ANTLR-PD

+ '''

+ 

+ [fedora]

+ 

+ name = "ANTLR Software Rights Notice"

+ abbreviation = "ANTLR-PD"

file added
+18
@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "APAFML"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM

+ '''

+ 

+ [fedora]

+ 

+ name = "Adobe Postscript AFM License"

+ abbreviation = "APAFML"

+ 

+ notes = '''

+ Permissive license, specifically for Adobe AFM files  It shows up in the open

+ source package iText. See http://itextpdf.com/terms-of-use/adobe.html

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "APSL-2.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.opensource.apple.com/apsl/2.0.txt

+ '''

+ 

+ [fedora]

+ 

+ name = "Apple Public Source License 2.0"

+ abbreviation = "APSL 2.0"

file added
+20
@@ -0,0 +1,20 @@ 

+ [license]

+ 

+ expression = "ARL"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/AspellRu

+ '''

+ 

+ [fedora]

+ 

+ name = "Aspell-ru License"

+ abbreviation = "ARL"

+ 

+ notes = '''

+ Permissive license. Single Russian dictionary file under this license. Should we

+ include additional license text?  appears to be part of larger license at:

+ http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/myspell-ru_RU-

+ ALexanderLebedev

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "Abstyles"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Abstyles

+ '''

+ 

+ [fedora]

+ 

+ name = "Abstyles License"

+ abbreviation = "Abstyles"

+ 

+ notes = '''

+ Document License.  Meets Open Source definition.

+ '''

@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "Adobe-2006"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/AdobeLicense

+ '''

+ 

+ [fedora]

+ 

+ name = "Adobe Systems Incorporated Source Code License Agreement"

+ abbreviation = "Adobe"

+ 

+ notes = '''

+ Permissive license with a reverse indemnification clause.  Indemnity flows from

+ Licensee to Adobe.

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "Adobe-Glyph"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph

+ '''

+ 

+ [fedora]

+ 

+ name = "Adobe Glyph List License"

+ abbreviation = "MIT"

+ 

+ notes = '''

+ MIT variant; Fedora does not use distinct short identifier

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "Afmparse"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Afmparse

+ '''

+ 

+ [fedora]

+ 

+ name = "Afmparse License"

+ abbreviation = "Afmparse"

+ 

+ notes = '''

+ Permissive license

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Apache-1.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.apache.org/licenses/LICENSE-1.0

+ '''

+ 

+ [fedora]

+ 

+ name = "Apache Software License 1.0"

+ abbreviation = "ASL 1.0"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Apache-1.1"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/SequenceLibraryLicense

+ '''

+ 

+ [fedora]

+ 

+ name = "Sequence Library License"

+ abbreviation = "Sequence"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Apache-2.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.apache.org/licenses/LICENSE-2.0

+ '''

+ 

+ [fedora]

+ 

+ name = "Apache Software License 2.0"

+ abbreviation = "ASL 2.0"

@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "App-s2p"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/App-s2p

+ '''

+ 

+ [fedora]

+ 

+ name = "App::s2p License"

+ abbreviation = "App-s2p"

+ 

+ notes = '''

+ used in https://metacpan.org/release/KNOK/File-MMagic-1.30/source/COPYING

+ https://github.com/spdx/license-list-XML/issues/1361

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Artistic-2.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.perlfoundation.org/artistic_license_2_0

+ '''

+ 

+ [fedora]

+ 

+ name = "Artistic 2.0"

+ abbreviation = "Artistic 2.0"

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "BSD-2-Clause-FreeBSD"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/BSD#2ClauseBSD

+ '''

+ 

+ [fedora]

+ 

+ name = "BSD License (two clause)"

+ abbreviation = "BSD"

+ 

+ notes = '''

+ Fedora uses identifier, "BSD"

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "BSD-2-Clause-Patent"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/BSD-2-Clause-Patent

+ '''

+ 

+ [fedora]

+ 

+ name = "BSD + Patent"

+ abbreviation = "BSD-2-Clause-Patent"

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "BSD-2-Clause"

+ status = "approved"

+ 

+ text = '''

+ http://www.cryptix.org/LICENSE.TXT

+ '''

+ 

+ [fedora]

+ 

+ name = "Cryptix General License"

+ abbreviation = "BSD"

+ 

+ notes = '''

+ Fedora uses identifier, "BSD"

+ '''

@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "BSD-3-Clause-Attribution"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution

+ '''

+ 

+ [fedora]

+ 

+ name = "BSD with attribution"

+ abbreviation = "BSD with attribution"

+ 

+ notes = '''

+ Did not find BSD with attribution on any of the URL links for BSD licenses (see

+ Note at bottom of table).

+ '''

@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "BSD-3-Clause-LBNL"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/LBNLBSD

+ '''

+ 

+ [fedora]

+ 

+ name = "Lawrence Berkeley National Labs BSD variant license"

+ abbreviation = "LBNL BSD"

+ 

+ notes = '''

+ BSD like license with a provision at the end that makes any non licensed

+ additions subject to a FOSS license

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "BSD-3-Clause"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Metasploit_Framework_License

+ '''

+ 

+ [fedora]

+ 

+ name = "Metasploit Framework License (post 2006)"

+ abbreviation = "BSD"

+ 

+ notes = '''

+ license text on Fedora page is list of licenses

+ '''

@@ -0,0 +1,20 @@ 

+ [license]

+ 

+ expression = "BSD-4-Clause"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/BSD#BSDwithAdvertising

+ '''

+ 

+ [fedora]

+ 

+ name = "BSD License (Advertising Variant)"

+ abbreviation = "BSD with advertising"

+ 

+ notes = '''

+ this is actually the BSD-4-Clause (Fedora records some extra stuff at top of

+ file, but that is not really part of license) Fedora should link to: https://fed

+ oraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#Original_BSD_License_.28BSD_w

+ ith_advertising.29  similar to BSD-4-Clause

+ '''

@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "BSD-Protection"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/BSD_Protection_License

+ '''

+ 

+ [fedora]

+ 

+ name = "BSD Protection License"

+ abbreviation = "BSD Protection"

+ 

+ notes = '''

+ Copyleft license that allows for binary distribution under closed source

+ license.

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "BSD 3-clause"

+ status = "approved"

+ 

+ text = '''

+ http://www.eclipse.org/org/documents/edl-v10.php

+ '''

+ 

+ [fedora]

+ 

+ name = "Eclipse Distribution License 1.0"

+ abbreviation = "BSD"

+ 

+ notes = '''

+ This is BSD 3-clause

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "BSL-1.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.boost.org/LICENSE_1_0.txt

+ '''

+ 

+ [fedora]

+ 

+ name = "Boost Software License"

+ abbreviation = "Boost"

file added
+17
@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "Bahyph"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Bahyph

+ '''

+ 

+ [fedora]

+ 

+ name = "Bahyph License"

+ abbreviation = "Bahyph"

+ 

+ notes = '''

+ Very permissive license (may be for single product).

+ '''

file added
+18
@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "Barr"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Barr

+ '''

+ 

+ [fedora]

+ 

+ name = "Barr License"

+ abbreviation = "Barr"

+ 

+ notes = '''

+ Shows up here: http://stuff.mit.edu/afs/athena/system/i386_deb50/os-

+ ubuntu-9.04/usr/share/texmf-texlive/tex/latex/barr/diagxy.tex

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "Beerware"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Beerware

+ '''

+ 

+ [fedora]

+ 

+ name = "Beerware License"

+ abbreviation = "Beerware"

+ 

+ notes = '''

+ Very permissive license.

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "BitTorrent-1.1"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/BitTorrent_Open_Source_License

+ '''

+ 

+ [fedora]

+ 

+ name = "BitTorrent License"

+ abbreviation = "BitTorrent"

+ 

+ notes = '''

+ SPDX List also has BitTorrent-1.0

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "Borceux"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Borceux

+ '''

+ 

+ [fedora]

+ 

+ name = "Borceux license"

+ abbreviation = "Borceux"

+ 

+ notes = '''

+ Permissive license. May be single package license.

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "CATOSL-1.1"

+ status = "approved"

+ 

+ text = '''

+ http://opensource.org/licenses/ca-tosl1.1.php

+ '''

+ 

+ [fedora]

+ 

+ name = "Computer Associates Trusted Open Source License 1.1"

+ abbreviation = "CATOSL"

+ 

+ notes = '''

+ SPDX short identifier adds version #

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "CC0-1.0"

+ status = "approved"

+ 

+ text = '''

+ http://creativecommons.org/publicdomain/zero/1.0/legalcode

+ '''

+ 

+ [fedora]

+ 

+ name = "Creative Commons Zero 1.0 Universal"

+ abbreviation = "CC0"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "CDDL-1.0"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/CDDL#CDDL_1.0

+ '''

+ 

+ [fedora]

+ 

+ name = "Common Development Distribution License 1.0"

+ abbreviation = "CDDL-1.0"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "CDDL-1.1"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/CDDL#CDDL_1.1

+ '''

+ 

+ [fedora]

+ 

+ name = "Common Development Distribution License 1.1"

+ abbreviation = "CDDL-1.1"

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "CECILL-1.1"

+ status = "approved"

+ 

+ text = '''

+ http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html

+ '''

+ 

+ [fedora]

+ 

+ name = "CeCILL License v1.1"

+ abbreviation = "CeCILL"

+ 

+ notes = '''

+ SPDX List also has CECILL-1.0

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "CECILL-2.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.cecill.info/licences.en.html

+ '''

+ 

+ [fedora]

+ 

+ name = "CeCILL License v2"

+ abbreviation = "CeCILL"

+ 

+ notes = '''

+ SPDX List also has CECILL-1.0

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "CECILL-B"

+ status = "approved"

+ 

+ text = '''

+ http://www.cecill.info/licences.en.html

+ '''

+ 

+ [fedora]

+ 

+ name = "CeCILL-B License"

+ abbreviation = "CeCILL-B"

+ 

+ notes = '''

+ SPDX List also has CECILL-1.0

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "CECILL-C"

+ status = "approved"

+ 

+ text = '''

+ http://www.cecill.info/licences.en.html

+ '''

+ 

+ [fedora]

+ 

+ name = "CeCILL-C License"

+ abbreviation = "CeCILL-C"

+ 

+ notes = '''

+ SPDX List also has CECILL-1.0

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "CNRI-Python"

+ status = "approved"

+ 

+ text = '''

+ http://www.handle.net/python_licenses/python1.6_9-5-00.html

+ '''

+ 

+ [fedora]

+ 

+ name = "CNRI License (Old Python)"

+ abbreviation = "CNRI"

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "CPAL-1.0"

+ status = "approved"

+ 

+ text = '''

+ https://www.socialtext.net/open/index.cgi?cpal_license_in_wikitext

+ '''

+ 

+ [fedora]

+ 

+ name = "CPAL License 1.0"

+ abbreviation = "CPAL"

+ 

+ notes = '''

+ SPDX short identifier adds version #

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "CPL-1.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.eclipse.org/legal/cpl-v10.html

+ '''

+ 

+ [fedora]

+ 

+ name = "Common Public License"

+ abbreviation = "CPL"

+ 

+ notes = '''

+ SPDX short identifier adds version #

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "CUA-OPL-1.0"

+ status = "approved"

+ 

+ text = '''

+ http://opensource.org/licenses/cuaoffice.php

+ '''

+ 

+ [fedora]

+ 

+ name = "CUA Office Public License Version 1.0"

+ abbreviation = "MPLv1.1"

+ 

+ notes = '''

+ Fedora uses short identifier, "MPLv1.1"

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "ClArtistic"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/ArtisticClarified

+ '''

+ 

+ [fedora]

+ 

+ name = "Artistic (clarified)"

+ abbreviation = "Artistic clarified"

@@ -0,0 +1,19 @@ 

+ [license]

+ 

+ expression = "Condor-1.1"

+ status = "approved"

+ 

+ text = '''

+ http://www.cs.wisc.edu/condor/condor-public-license.html

+ '''

+ 

+ [fedora]

+ 

+ name = "Condor Public License"

+ abbreviation = "Condor"

+ 

+ notes = '''

+ URL has been updated to show Apache-2.0 (SPDX has original text) The URL

+ provided by Fedora does not point to any license.  SPDX short identifier adds

+ version #

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "Crossword"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Crossword

+ '''

+ 

+ [fedora]

+ 

+ name = "Crossword License"

+ abbreviation = "Crossword"

+ 

+ notes = '''

+ Permissive license. May be single package license.

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "CrystalStacker"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/CrystalStacker

+ '''

+ 

+ [fedora]

+ 

+ name = "Crystal Stacker License"

+ abbreviation = "Crystal Stacker"

file added
+19
@@ -0,0 +1,19 @@ 

+ [license]

+ 

+ expression = "Cube"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Cube

+ '''

+ 

+ [fedora]

+ 

+ name = "Cube License"

+ abbreviation = "Cube"

+ 

+ notes = '''

+ Permissive license with requirement that you may not relicense the source code

+ under any other license. Official site http://src.gnu-

+ darwin.org/ports/games/assaultcube/work/AssaultCube/source/LICENSE

+ '''

file added
+17
@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "DOC"

+ status = "approved"

+ 

+ text = '''

+ http://www.cs.wustl.edu/~schmidt/ACE-copying.html

+ '''

+ 

+ [fedora]

+ 

+ name = "DOC License"

+ abbreviation = "DOC"

+ 

+ notes = '''

+ Permissive license. May be single package license, but package is oft used.

+ '''

file added
+17
@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "DSDP"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/DSDP

+ '''

+ 

+ [fedora]

+ 

+ name = "DSDP License"

+ abbreviation = "DSDP"

+ 

+ notes = '''

+ MIT like license.

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "Dotseqn"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Dotseqn

+ '''

+ 

+ [fedora]

+ 

+ name = "Dotseqn License"

+ abbreviation = "Dotseqn"

+ 

+ notes = '''

+ Permissive license. Appears to be single file/package

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "ECL-1.0"

+ status = "approved"

+ 

+ text = '''

+ http://opensource.org/licenses/ecl1.php

+ '''

+ 

+ [fedora]

+ 

+ name = "Educational Community License 1.0"

+ abbreviation = "ECL 1.0"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "ECL-2.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.osedu.org/licenses/ECL-2.0/

+ '''

+ 

+ [fedora]

+ 

+ name = "Educational Community License 2.0"

+ abbreviation = "ECL 2.0"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "EFL-2.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.fsf.org/licensing/licenses/eiffel-forum-license-2.html

+ '''

+ 

+ [fedora]

+ 

+ name = "Eiffel Forum License 2.0"

+ abbreviation = "EFL 2.0"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "EPICS"

+ status = "approved"

+ 

+ text = '''

+ http://www.aps.anl.gov/epics/license/open.php

+ '''

+ 

+ [fedora]

+ 

+ name = "EPICS Open License"

+ abbreviation = "EPICS"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "EPL-1.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.eclipse.org/legal/epl-v10.html

+ '''

+ 

+ [fedora]

+ 

+ name = "Eclipse Public License 1.0"

+ abbreviation = "EPL-1.0"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "EPL-2.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.eclipse.org/legal/epl-v20.html

+ '''

+ 

+ [fedora]

+ 

+ name = "Eclipse Public License 2.0"

+ abbreviation = "EPL-2.0"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "EUDatagrid"

+ status = "approved"

+ 

+ text = '''

+ http://www.opensource.org/licenses/eudatagrid.php

+ '''

+ 

+ [fedora]

+ 

+ name = "EU Datagrid Software License"

+ abbreviation = "EU Datagrid"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "EUPL-1.1"

+ status = "approved"

+ 

+ text = '''

+ http://ec.europa.eu/idabc/en/document/7774.html

+ '''

+ 

+ [fedora]

+ 

+ name = "European Union Public License 1.1"

+ abbreviation = "EUPL 1.1"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "EUPL-1.2"

+ status = "approved"

+ 

+ text = '''

+ https://opensource.org/licenses/EUPL-1.2

+ '''

+ 

+ [fedora]

+ 

+ name = "European Union Public License 1.2"

+ abbreviation = "EUPL 1.2"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Entessa"

+ status = "approved"

+ 

+ text = '''

+ http://opensource.org/licenses/entessa.php

+ '''

+ 

+ [fedora]

+ 

+ name = "Entessa Public License"

+ abbreviation = "Entessa"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "ErlPL-1.1"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/ErlangPublicLicense

+ '''

+ 

+ [fedora]

+ 

+ name = "Erlang Public License 1.1"

+ abbreviation = "ERPL"

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "Eurosym"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Eurosym

+ '''

+ 

+ [fedora]

+ 

+ name = "Eurosym License"

+ abbreviation = "Eurosym"

+ 

+ notes = '''

+ Copyleft license. German law applies

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "FDK-AAC"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/FDK-AAC

+ '''

+ 

+ [fedora]

+ 

+ name = "Fraunhofer FDK AAC License"

+ abbreviation = "FDK-AAC"

+ 

+ notes = '''

+ if still used in Fedora, then add to SPDX added for 3.15 version

+ '''

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "FSFAP"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/FSFAP

+ '''

+ 

+ [fedora]

+ 

+ name = "FSF All Permissive license"

+ abbreviation = "FSFAP"

file added
+17
@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "FSFUL"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License

+ '''

+ 

+ [fedora]

+ 

+ name = "FSF Unlimited License"

+ abbreviation = "FSFUL"

+ 

+ notes = '''

+ Permissive license.

+ '''

@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "FSFULLR"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention

+ _Variant

+ '''

+ 

+ [fedora]

+ 

+ name = "FSF Unlimited License (with License Retention)"

+ abbreviation = "FSFULLR"

+ 

+ notes = '''

+ Permissive license.

+ '''

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "FTL"

+ status = "approved"

+ 

+ text = '''

+ http://freetype.fis.uniroma2.it/FTL.TXT

+ '''

+ 

+ [fedora]

+ 

+ name = "Freetype License"

+ abbreviation = "FTL"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Fair"

+ status = "approved"

+ 

+ text = '''

+ http://opensource.org/licenses/fair.php

+ '''

+ 

+ [fedora]

+ 

+ name = "Fair License"

+ abbreviation = "Fair"

@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "FreeImage"

+ status = "approved"

+ 

+ text = '''

+ http://freeimage.sourceforge.net/freeimage-license.txt

+ '''

+ 

+ [fedora]

+ 

+ name = "FreeImage Public License"

+ abbreviation = "MPLv1.0"

+ 

+ notes = '''

+ Fedora does not use distinct short identifier from MPLv1.0 (needs to be

+ verified).   diff in choice of law provision - ADDED

+ '''

file added
+17
@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "GL2PS"

+ status = "approved"

+ 

+ text = '''

+ http://www.geuz.org/gl2ps/COPYING.GL2PS

+ '''

+ 

+ [fedora]

+ 

+ name = "GL2PS License"

+ abbreviation = "GL2PS"

+ 

+ notes = '''

+ Copyleft license.

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "GPL-1.0-only"

+ status = "approved"

+ 

+ text = '''

+ http://www.gnu.org/licenses/old-licenses/gpl-1.0.txt

+ '''

+ 

+ [fedora]

+ 

+ name = "GNU General Public License v1.0 only"

+ abbreviation = "GPLv1"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "GPL-1.0-or-later"

+ status = "approved"

+ 

+ text = '''

+ Note that this is not GPLv1+, because 1+ is the same as any version.

+ '''

+ 

+ [fedora]

+ 

+ name = "GNU General Public License v1.0 or later"

+ abbreviation = "GPL+"

@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "GPL-1.0-or-later OR Artistic-1.0-Perl"

+ status = "approved"

+ 

+ text = '''

+ http://dev.perl.org/licenses/

+ '''

+ 

+ [fedora]

+ 

+ name = "Perl License"

+ abbreviation = "GPL+ or Artistic"

+ 

+ notes = '''

+ this would be covered by using the short identifiers for each licnese choice

+ with the "OR" operator

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "GPL-1.0-or-later WITH Classpath-exception-2.0"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception

+ '''

+ 

+ [fedora]

+ 

+ name = "GNU General Public License (no version), with Classpath exception"

+ abbreviation = "GPL+ with exceptions"

@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "GPL-1.0-or-later WITH Font-exception-2.0"

+ status = "approved"

+ 

+ text = '''

+ A GPL or LGPL licensed package that lacks any statement of what version that

+ it's licensed under in the source code/program output/accompanying docs is

+ technically licensed under *any* version of the GPL or LGPL, not just the

+ version in whatever COPYING file they include. And if they manage to grant the

+ font embedding exception without specifying a version, you get this strange

+ beast.

+ '''

+ 

+ [fedora]

+ 

+ name = "GNU General Public License (no version), with font embedding exception"

+ abbreviation = "GPL+ with exceptions"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "GPL-2.0-only"

+ status = "approved"

+ 

+ text = '''

+ http://www.gnu.org/licenses/old-licenses/gpl-2.0.html

+ '''

+ 

+ [fedora]

+ 

+ name = "GNU General Public License v2.0 only"

+ abbreviation = "GPLv2"

@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "GPL-2.0-only OR Artistic-1.0-Perl"

+ status = "approved"

+ 

+ text = '''

+ Some perl packages explicitly state GPLv2, only use this license for those cases

+ '''

+ 

+ [fedora]

+ 

+ name = "Perl License (variant)"

+ abbreviation = "GPLv2 or Artistic"

+ 

+ notes = '''

+ this would be covered by using the short identifiers for each licnese choice

+ with the "OR" operator

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "GPL-2.0-only WITH Classpath-exception-2.0"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception

+ '''

+ 

+ [fedora]

+ 

+ name = "GNU General Public License v2.0 only, with Classpath exception"

+ abbreviation = "GPLv2 with exceptions"

@@ -0,0 +1,19 @@ 

+ [license]

+ 

+ expression = "GPL-2.0-only WITH DigiRule-FOSS-exception GPL-2.0-only WITH Universal-FOSS-exception-1.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.mysql.com/company/legal/licensing/foss-exception.html

+ '''

+ 

+ [fedora]

+ 

+ name = "MySQL License"

+ abbreviation = "GPLv2 with exceptions"

+ 

+ notes = '''

+ SPDX has the old one and the latest one (same as Fedora-provided link)  note for

+ SPDX: DigiRule needs markup in SPDX (current one) two versions of this, link

+ only goes to most current

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "GPL-2.0-only WITH Font-exception-2.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.gnu.org/licenses/gpl-faq.html#FontException

+ '''

+ 

+ [fedora]

+ 

+ name = "GNU General Public License v2.0 only, with font embedding exception"

+ abbreviation = "GPLv2 with exceptions"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "GPL-2.0-or-later"

+ status = "approved"

+ 

+ text = '''

+ http://www.gnu.org/licenses/old-licenses/gpl-2.0.html

+ '''

+ 

+ [fedora]

+ 

+ name = "GNU General Public License v2.0 or later"

+ abbreviation = "GPLv2+"

@@ -0,0 +1,19 @@ 

+ [license]

+ 

+ expression = "GPL-2.0-or-later OR Artistic-1.0-Perl"

+ status = "approved"

+ 

+ text = '''

+ Some perl packages explicitly state GPLv2+, only use this license for those

+ cases

+ '''

+ 

+ [fedora]

+ 

+ name = "Perl License (variant)"

+ abbreviation = "GPLv2+ or Artistic"

+ 

+ notes = '''

+ this would be covered by using the short identifiers for each licnese choice

+ with the "OR" operator

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "GPL-2.0-or-later WITH Classpath-exception-2.0"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception

+ '''

+ 

+ [fedora]

+ 

+ name = "GNU General Public License v2.0 or later, with Classpath exception"

+ abbreviation = "GPLv2+ with exceptions"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "GPL-2.0-or-later WITH Font-exception-2.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.gnu.org/licenses/gpl-faq.html#FontException

+ '''

+ 

+ [fedora]

+ 

+ name = "GNU General Public License v2.0 or later, with font embedding exception"

+ abbreviation = "GPLv2+ with exceptions"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "GPL-2.0-or-later WITH eCos-2.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.fsf.org/licensing/licenses/ecos-license.html

+ '''

+ 

+ [fedora]

+ 

+ name = "eCos License v2.0"

+ abbreviation = "eCos"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "GPL-3.0-only"

+ status = "approved"

+ 

+ text = '''

+ http://www.fsf.org/licensing/licenses/gpl.html

+ '''

+ 

+ [fedora]

+ 

+ name = "GNU General Public License v3.0 only"

+ abbreviation = "GPLv3"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "GPL-3.0-only WITH Classpath-exception-2.0"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception

+ '''

+ 

+ [fedora]

+ 

+ name = "GNU General Public License v3.0 only, with Classpath exception"

+ abbreviation = "GPLv3 with exceptions"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "GPL-3.0-only WITH Font-exception-2.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.gnu.org/licenses/gpl-faq.html#FontException

+ '''

+ 

+ [fedora]

+ 

+ name = "GNU General Public License v3.0 only, with font embedding exception"

+ abbreviation = "GPLv3 with exceptions"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "GPL-3.0-or-later"

+ status = "approved"

+ 

+ text = '''

+ http://www.fsf.org/licensing/licenses/gpl.html

+ '''

+ 

+ [fedora]

+ 

+ name = "GNU General Public License v3.0 or later"

+ abbreviation = "GPLv3+"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "GPL-3.0-or-later WITH Classpath-exception-2.0"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception

+ '''

+ 

+ [fedora]

+ 

+ name = "GNU General Public License v3.0 or later, with Classpath exception"

+ abbreviation = "GPLv3+ with exceptions"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "GPL-3.0-or-later WITH Font-exception-2.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.gnu.org/licenses/gpl-faq.html#FontException

+ '''

+ 

+ [fedora]

+ 

+ name = "GNU General Public License v3.0 or later, with font embedding exception"

+ abbreviation = "GPLv3+ with exceptions"

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "Giftware"

+ status = "approved"

+ 

+ text = '''

+ http://www.talula.demon.co.uk/allegro/license.html

+ '''

+ 

+ [fedora]

+ 

+ name = "Giftware License"

+ abbreviation = "Giftware"

+ 

+ notes = '''

+ Permissive license.  done - added Allegro 4; Allegro 5 is same as zlib

+ '''

file added
+19
@@ -0,0 +1,19 @@ 

+ [license]

+ 

+ expression = "Glide"

+ status = "approved"

+ 

+ text = '''

+ http://www.users.on.net/~triforce/glidexp/COPYING.txt

+ '''

+ 

+ [fedora]

+ 

+ name = "3dfx Glide License"

+ abbreviation = "Glide"

+ 

+ notes = '''

+ License is specific to 3dfx corporation and glide software. License text shows

+ up in opensuse. See https://gitorious.org/opensuse/license_o_o/source/f0086a864b

+ 2322ce268931aeb45edbe2718fd2a6:licenses/3DFX-GPL.txt

+ '''

file added
+17
@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "Glulxe"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Glulxe

+ '''

+ 

+ [fedora]

+ 

+ name = "Glulxe License"

+ abbreviation = "Glulxe"

+ 

+ notes = '''

+ Permissive license. May be one package license.

+ '''

@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "Gnuplot"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Gnuplot

+ '''

+ 

+ [fedora]

+ 

+ name = "gnuplot License"

+ abbreviation = "gnuplot"

+ 

+ notes = '''

+ License requires changes to source to be packaged as patches and not appended to

+ the original source, etc.

+ '''

file added
+17
@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "HPND"

+ status = "approved"

+ 

+ text = '''

+ http://opensource.org/licenses/historical.php

+ '''

+ 

+ [fedora]

+ 

+ name = "Historical Permission Notice and Disclaimer"

+ abbreviation = "MIT"

+ 

+ notes = '''

+ no longer used in practice per OSI

+ '''

@@ -0,0 +1,19 @@ 

+ [license]

+ 

+ expression = "HaskellReport"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License

+ '''

+ 

+ [fedora]

+ 

+ name = "Haskell Language Report License"

+ abbreviation = "HaskellReport"

+ 

+ notes = '''

+ there are 3 variations here, but the difference can be accomodated via a license

+ template as it's only a different in name; use same Fedora short identifier; add

+ as one license with template

+ '''

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "IJG"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/IJG

+ '''

+ 

+ [fedora]

+ 

+ name = "Independent JPEG Group License"

+ abbreviation = "IJG"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "IPL-1.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.opensource.org/licenses/ibmpl.php

+ '''

+ 

+ [fedora]

+ 

+ name = "IBM Public License"

+ abbreviation = "IBM"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "ISC"

+ status = "approved"

+ 

+ text = '''

+ https://www.isc.org/software/license

+ '''

+ 

+ [fedora]

+ 

+ name = "ISC License (Bind, DHCP Server)"

+ abbreviation = "ISC"

@@ -0,0 +1,20 @@ 

+ [license]

+ 

+ expression = "ImageMagick"

+ status = "approved"

+ 

+ text = '''

+ http://www.imagemagick.org/script/license.php

+ '''

+ 

+ [fedora]

+ 

+ name = "ImageMagick License"

+ abbreviation = "ImageMagick"

+ 

+ notes = '''

+ Weak copyleft license specific to imagemagick Apache 2.0 with the exception of

+ the summary above the Terms and Conditions, the statement above the (c) notice,

+ and the absence of ""(except as stated in this section)"" in section 3, patent

+ grant

+ '''

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Imlib2"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Imlib2

+ '''

+ 

+ [fedora]

+ 

+ name = "Imlib2 License"

+ abbreviation = "Imlib2"

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "Intel-ACPI"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement

+ '''

+ 

+ [fedora]

+ 

+ name = "Intel ACPI Software License Agreement"

+ abbreviation = "Intel ACPI"

+ 

+ notes = '''

+ Intel specific license.

+ '''

@@ -0,0 +1,28 @@ 

+ [license]

+ 

+ expression = "Interbase-1.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.celtx.com/CePL/

+ '''

+ 

+ [fedora]

+ 

+ name = "Celtx Public License (CePL)"

+ abbreviation = "Netscape"

+ 

+ notes = '''

+ as per 6/3/2021 - still shows up in Fedora - in Libre Office Libre Office

+ Licensing list shows Firebrand under http://www.firebirdsql.org/en/initial-

+ developer-s-public-license-version-1-0/ and

+ http://www.firebirdsql.org/en/interbase-public-license/ - the latter of which is

+ on SPDX License List  The former is really MPL-1.1 with an additional clause

+ (6.4) which explains the origins (and which probably can't be accommodated via

+ markup) Add to SPDX? Fedora needs to update Full Name, which is wrong URL should

+ point to https://www.celtx.com/desktoplicense.html#artTerms  looks like the

+ license page has since been updated to MPL-2.0... (and the other link we found

+ is now also broken) - is this what we reviewed?

+ https://www.ohloh.net/licenses/Celtx_Public_License - decided not to add, since

+ cannot confirm license text originally reviewed

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "JasPer-2.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.ece.uvic.ca/~mdadams/jasper/LICENSE

+ '''

+ 

+ [fedora]

+ 

+ name = "JasPer License"

+ abbreviation = "JasPer"

+ 

+ notes = '''

+ MIT/BSD like

+ '''

@@ -0,0 +1,21 @@ 

+ [license]

+ 

+ expression = "LGPL-2.0-only "

+ status = "approved"

+ 

+ text = '''

+ =HYPERLINK("http://www.gnu.org/licenses/old-

+ licenses/lgpl-2.1.html","http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html

+ Note that this license was originally referred to as the GNU Library General

+ Public License v2, but all current versions (v2.1 or newer) of the license are

+ correctly known as the GNU Lesser General Public License.")

+ '''

+ 

+ [fedora]

+ 

+ name = "GNU Lesser General Public License v2 (or 2.1) only"

+ abbreviation = "LGPLv2"

+ 

+ notes = '''

+ Fedora treats 2.0 and 2.1 as same, SPDX does not

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "LGPL-2.0-or-later"

+ status = "approved"

+ 

+ text = '''

+ http://creativecommons.org/choose/cc-lgpl

+ '''

+ 

+ [fedora]

+ 

+ name = "Creative Commons GNU LGPL"

+ abbreviation = "LGPLv2+"

+ 

+ notes = '''

+ This is LGPL-2.0+

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "LGPL-2.0-or-later "

+ status = "approved"

+ 

+ text = '''

+ http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html

+ '''

+ 

+ [fedora]

+ 

+ name = "GNU Lesser General Public License v2 (or 2.1) or later"

+ abbreviation = "LGPLv2+"

@@ -0,0 +1,19 @@ 

+ [license]

+ 

+ expression = "LGPL-2.0-or-later OR Artistic-1.0-Perl"

+ status = "approved"

+ 

+ text = '''

+ Some perl packages explicitly state LGPLv2+ (extremely uncommon), only use this

+ license for those cases

+ '''

+ 

+ [fedora]

+ 

+ name = "Perl License (variant)"

+ abbreviation = "LGPLv2+ or Artistic"

+ 

+ notes = '''

+ this would be covered by using the short identifiers for each licnese choice

+ with the "OR" operator

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "LGPL-2.0-or-later WITH FLTK-exception"

+ status = "approved"

+ 

+ text = '''

+ http://www.fltk.org/COPYING.php

+ '''

+ 

+ [fedora]

+ 

+ name = "FLTK License"

+ abbreviation = "LGPLv2 with exceptions"

+ 

+ notes = '''

+ LGPLv2 with exception.

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "LGPL-2.0-or-later WITH WxWindows-exception-3.1"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/wxWindows.html

+ '''

+ 

+ [fedora]

+ 

+ name = "wxWindows Library License v 3.1"

+ abbreviation = "wxWindows"

@@ -0,0 +1,9 @@ 

+ [license]

+ 

+ expression = "LGPL-2.1-only"

+ status = "approved"

+ 

+ [fedora]

+ 

+ name = "GNU Lesser General Public License v2 (or 2.1) only"

+ abbreviation = "LGPLv2"

@@ -0,0 +1,9 @@ 

+ [license]

+ 

+ expression = "LGPL-2.1-or-later"

+ status = "approved"

+ 

+ [fedora]

+ 

+ name = "GNU Lesser General Public License v2 (or 2.1) or later"

+ abbreviation = "LGPLv2+"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "LGPL-2.1-or-later WITH Qwt-exception-1.0"

+ status = "approved"

+ 

+ text = '''

+ http://qwt.sourceforge.net/qwtlicense.html

+ '''

+ 

+ [fedora]

+ 

+ name = "Qwt License 1.0"

+ abbreviation = "LGPLv2+ with exceptions"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "LGPL-3.0-only"

+ status = "approved"

+ 

+ text = '''

+ http://www.fsf.org/licensing/licenses/lgpl.html

+ '''

+ 

+ [fedora]

+ 

+ name = "GNU Lesser General Public License v3.0 only"

+ abbreviation = "LGPLv3"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "LGPL-3.0-or-later"

+ status = "approved"

+ 

+ text = '''

+ http://www.fsf.org/licensing/licenses/lgpl.html

+ '''

+ 

+ [fedora]

+ 

+ name = "GNU Lesser General Public License v3.0 or later"

+ abbreviation = "LGPLv3+"

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "LPL-1.02"

+ status = "approved"

+ 

+ text = '''

+ http://plan9.bell-labs.com/plan9dist/license.html

+ '''

+ 

+ [fedora]

+ 

+ name = "Lucent Public License (Plan9)"

+ abbreviation = "LPL"

+ 

+ notes = '''

+ SPDX List also has LPL-1.0

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "LPPL-1.3a"

+ status = "approved"

+ 

+ text = '''

+ http://www.latex-project.org/lppl/lppl-1-3a.txt

+ '''

+ 

+ [fedora]

+ 

+ name = "LaTeX Project Public License"

+ abbreviation = "LPPL"

+ 

+ notes = '''

+ SPDX List also has LPPL-1.0, LPPL-1.1, LPPL-1.2, LPPL-1.3c

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "Latex2e"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Latex2e

+ '''

+ 

+ [fedora]

+ 

+ name = "Latex2e License"

+ abbreviation = "Latex2e"

+ 

+ notes = '''

+ Copyleft license.

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "Leptonica"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Leptonica

+ '''

+ 

+ [fedora]

+ 

+ name = "Leptonica License"

+ abbreviation = "Leptonica"

+ 

+ notes = '''

+ BSD like.  Official license site http://www.leptonica.com/about-the-license.html

+ '''

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "MIT-0"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/MIT-0

+ '''

+ 

+ [fedora]

+ 

+ name = "MIT No Attribution (MIT-0)"

+ abbreviation = "MIT-0"

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "MIT-CMU"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style

+ '''

+ 

+ [fedora]

+ 

+ name = "CMU License (BSD like)"

+ abbreviation = "MIT"

+ 

+ notes = '''

+ MIT/BSD variant.

+ '''

@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "MIT-advertising"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising

+ '''

+ 

+ [fedora]

+ 

+ name = "Enlightenment License (e16)"

+ abbreviation = "MIT with advertising"

+ 

+ notes = '''

+ This license is identical to MIT-FEH (except for templatized copyright

+ statement)

+ '''

@@ -0,0 +1,19 @@ 

+ [license]

+ 

+ expression = "MIT-enna"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/MIT#enna

+ '''

+ 

+ [fedora]

+ 

+ name = "enna License"

+ abbreviation = "MIT"

+ 

+ notes = '''

+ MIT variant  COPYING.PLAIN text referenced in the license can be found here

+ http://git.enlightenment.org/enlightenment/modules/forecasts.git/plain/COPYING-

+ PLAIN

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "MIT-feh"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/MIT#feh

+ '''

+ 

+ [fedora]

+ 

+ name = "feh License"

+ abbreviation = "MIT"

+ 

+ notes = '''

+ Slight variant to MIT license. May be one package license

+ '''

file added
+19
@@ -0,0 +1,19 @@ 

+ [license]

+ 

+ expression = "MIT"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/MIT

+ '''

+ 

+ [fedora]

+ 

+ name = "MIT license (also X11)"

+ abbreviation = "MIT"

+ 

+ notes = '''

+ SPDX has many of the variations accounted for; eventually would want to check

+ anything tagged as MIT in Fedora and check for actual license text This link

+ goes to MIT "category" page - not a specific license text

+ '''

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "MITNFA"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/MITNFA

+ '''

+ 

+ [fedora]

+ 

+ name = "MIT +no-false-attribs license"

+ abbreviation = "MITNFA"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "MPL-1.0"

+ status = "approved"

+ 

+ text = '''

+ http://opensource.org/licenses/mozilla1.0.php

+ '''

+ 

+ [fedora]

+ 

+ name = "Mozilla Public License v1.0"

+ abbreviation = "MPLv1.0"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "MPL-1.1"

+ status = "approved"

+ 

+ text = '''

+ http://www.mozilla.org/MPL/MPL-1.1.html

+ '''

+ 

+ [fedora]

+ 

+ name = "Mozilla Public License v1.1"

+ abbreviation = "MPLv1.1"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "MPL-2.0"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/MPLv2.0

+ '''

+ 

+ [fedora]

+ 

+ name = "Mozilla Public License v2.0"

+ abbreviation = "MPLv2.0"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "MS-PL"

+ status = "approved"

+ 

+ text = '''

+ http://www.microsoft.com/opensource/licenses.mspx#Ms-PL

+ '''

+ 

+ [fedora]

+ 

+ name = "Microsoft Public License"

+ abbreviation = "MS-PL"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "MS-RL"

+ status = "approved"

+ 

+ text = '''

+ http://www.microsoft.com/opensource/licenses.mspx#Ms-RL

+ '''

+ 

+ [fedora]

+ 

+ name = "Microsoft Reciprocal License"

+ abbreviation = "MS-RL"

file added
+17
@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "MTLL"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License

+ '''

+ 

+ [fedora]

+ 

+ name = "Matrix Template Library License"

+ abbreviation = "MTLL"

+ 

+ notes = '''

+ Single package license. Apache-1.1-like

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "MakeIndex"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/MakeIndex

+ '''

+ 

+ [fedora]

+ 

+ name = "MakeIndex License"

+ abbreviation = "MakeIndex"

+ 

+ notes = '''

+ Strong Copyleft.

+ '''

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "MirOS"

+ status = "approved"

+ 

+ text = '''

+ http://mirbsd.de/MirOS-Licence

+ '''

+ 

+ [fedora]

+ 

+ name = "MirOS License"

+ abbreviation = "MirOS"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Motosoto"

+ status = "approved"

+ 

+ text = '''

+ http://opensource.org/licenses/motosoto.php

+ '''

+ 

+ [fedora]

+ 

+ name = "Motosoto License"

+ abbreviation = "Motosoto"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Mup"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Mup

+ '''

+ 

+ [fedora]

+ 

+ name = "Mup License"

+ abbreviation = "Mup"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "NCSA"

+ status = "approved"

+ 

+ text = '''

+ http://otm.illinois.edu/uiuc_openSource

+ '''

+ 

+ [fedora]

+ 

+ name = "NCSA/University of Illinois Open Source License"

+ abbreviation = "NCSA"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "NGPL"

+ status = "approved"

+ 

+ text = '''

+ http://opensource.org/licenses/nethack.php

+ '''

+ 

+ [fedora]

+ 

+ name = "Nethack General Public License"

+ abbreviation = "NGPL"

@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "NIST-PD-fallback"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/NISTSL

+ '''

+ 

+ [fedora]

+ 

+ name = "NIST Software License"

+ abbreviation = "NISTSL"

+ 

+ notes = '''

+ new license to Fedora.  SPDX version and in wild does not have superflous

+ paragraph at beg and end as shows in Fedora license text page?

+ '''

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "NLPL"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/NLPL

+ '''

+ 

+ [fedora]

+ 

+ name = "No Limit Public License"

+ abbreviation = "NLPL"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "NOSL"

+ status = "approved"

+ 

+ text = '''

+ http://bits.netizen.com.au/licenses/NOSL/nosl.txt

+ '''

+ 

+ [fedora]

+ 

+ name = "Netizen Open Source License"

+ abbreviation = "NOSL"

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "NPL-1.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.mozilla.org/NPL/NPL-1.0.html

+ '''

+ 

+ [fedora]

+ 

+ name = "Netscape Public License"

+ abbreviation = "Netscape"

+ 

+ notes = '''

+ SPDX List also has NPL-1.1

+ '''

file added
+19
@@ -0,0 +1,19 @@ 

+ [license]

+ 

+ expression = "NRL"

+ status = "approved"

+ 

+ text = '''

+ http://web.mit.edu/network/isakmp/nrllicense.html

+ '''

+ 

+ [fedora]

+ 

+ name = "NRL License"

+ abbreviation = "BSD with advertising"

+ 

+ notes = '''

+ this license is just different enough from BSD-4-Clause, including adding a

+ clause stating that "All terms of the UC Berkeley copyright and license must be

+ followed.

+ '''

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Naumen"

+ status = "approved"

+ 

+ text = '''

+ http://opensource.org/licenses/naumen.php

+ '''

+ 

+ [fedora]

+ 

+ name = "Naumen Public License"

+ abbreviation = "Naumen"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Newsletr"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Newsletr

+ '''

+ 

+ [fedora]

+ 

+ name = "Newsletr License"

+ abbreviation = "Newsletr"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Nokia"

+ status = "approved"

+ 

+ text = '''

+ http://opensource.org/licenses/nokia.html

+ '''

+ 

+ [fedora]

+ 

+ name = "Nokia Open Source License"

+ abbreviation = "Nokia"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Noweb"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Noweb

+ '''

+ 

+ [fedora]

+ 

+ name = "Noweb License"

+ abbreviation = "Noweb"

@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "Nunit zlib-acknowledgement"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Nunit

+ '''

+ 

+ [fedora]

+ 

+ name = "Nunit License"

+ abbreviation = "MIT with advertising"

+ 

+ notes = '''

+ added to SPDX as "Nunit" and later realized it was same as zlib-acknowledgement

+ with matching guidelines - use latter identifier

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "OGL-UK-3.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/

+ '''

+ 

+ [fedora]

+ 

+ name = "Open Government License"

+ abbreviation = "OGL"

+ 

+ notes = '''

+ SPDX uses version number and "UK" as there are other "Open Government" licenses

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "OLDAP-2.8"

+ status = "approved"

+ 

+ text = '''

+ http://www.openldap.org/software/release/license.html

+ '''

+ 

+ [fedora]

+ 

+ name = "OpenLDAP License"

+ abbreviation = "OpenLDAP"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "OML"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Open_Market_License

+ '''

+ 

+ [fedora]

+ 

+ name = "Open Market License"

+ abbreviation = "OML"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "OSL-1.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.opensource.org/licenses/osl-1.0.txt

+ '''

+ 

+ [fedora]

+ 

+ name = "Open Software License 1.0"

+ abbreviation = "OSL 1.0"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "OSL-2.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.nexb.com/license/LICENSE-OSL-2.0.html

+ '''

+ 

+ [fedora]

+ 

+ name = "Open Software License 2.0"

+ abbreviation = "OSL 2.0"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "OSL-2.1"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/OSL2.1

+ '''

+ 

+ [fedora]

+ 

+ name = "Open Software License 2.1"

+ abbreviation = "OSL 2.1"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "OSL-3.0"

+ status = "approved"

+ 

+ text = '''

+ http://opensource.org/licenses/osl-3.0.php

+ '''

+ 

+ [fedora]

+ 

+ name = "Open Software License 3.0"

+ abbreviation = "OSL 3.0"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "OpenSSL"

+ status = "approved"

+ 

+ text = '''

+ http://www.sdisw.com/openssl.htm

+ '''

+ 

+ [fedora]

+ 

+ name = "OpenSSL License"

+ abbreviation = "OpenSSL"

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "PHP-3.01"

+ status = "approved"

+ 

+ text = '''

+ http://www.php.net/license/3_01.txt

+ '''

+ 

+ [fedora]

+ 

+ name = "PHP License v3.0"

+ abbreviation = "PHP"

+ 

+ notes = '''

+ SPDX List also has PHP-3.0

+ '''

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Plexus"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License

+ '''

+ 

+ [fedora]

+ 

+ name = "Plexus Classworlds License"

+ abbreviation = "Plexus"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "PostgreSQL"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/PostgreSQL_License

+ '''

+ 

+ [fedora]

+ 

+ name = "PostgreSQL License"

+ abbreviation = "PostgreSQL"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "QPL-1.0"

+ status = "approved"

+ 

+ text = '''

+ http://doc.trolltech.com/4.0/qpl.html

+ '''

+ 

+ [fedora]

+ 

+ name = "Q Public License"

+ abbreviation = "QPL"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Qhull"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Qhull

+ '''

+ 

+ [fedora]

+ 

+ name = "Qhull License"

+ abbreviation = "Qhull"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "RPSL-1.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.opensource.org/licenses/real.php

+ '''

+ 

+ [fedora]

+ 

+ name = "RealNetworks Public Source License V1.0"

+ abbreviation = "RPSL"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Rdisc"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Rdisc_License

+ '''

+ 

+ [fedora]

+ 

+ name = "Rdisc License"

+ abbreviation = "Rdisc"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Ruby"

+ status = "approved"

+ 

+ text = '''

+ http://www.ruby-lang.org/en/LICENSE.txt

+ '''

+ 

+ [fedora]

+ 

+ name = "Ruby License"

+ abbreviation = "Ruby"

file added
+18
@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "SCEA"

+ status = "approved"

+ 

+ text = '''

+ http://research.scea.com/scea_shared_source_license.html

+ '''

+ 

+ [fedora]

+ 

+ name = "SCEA Shared Source License"

+ abbreviation = "SCEA"

+ 

+ notes = '''

+ note it is listed here too: http://en.opensuse.org/openSUSE:Accepted_licences

+ and elsewhere

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "SGI-B-2.0"

+ status = "approved"

+ 

+ text = '''

+ http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf

+ '''

+ 

+ [fedora]

+ 

+ name = "SGI Free Software License B 2.0"

+ abbreviation = "MIT"

+ 

+ notes = '''

+ Fedora uses short name, "MIT"

+ '''

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "SISSL"

+ status = "approved"

+ 

+ text = '''

+ http://www.openoffice.org/licenses/sissl_license.html

+ '''

+ 

+ [fedora]

+ 

+ name = "Sun Industry Standards Source License"

+ abbreviation = "SISSL"

file added
+19
@@ -0,0 +1,19 @@ 

+ [license]

+ 

+ expression = "SNIA"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/SNIA_Public_License

+ '''

+ 

+ [fedora]

+ 

+ name = "SNIA Public License 1.1"

+ abbreviation = "SNIA"

+ 

+ notes = '''

+ The reference URL given in the license text doesn't work anymore

+ http://www.snia.org/smi/developers/open_source/ There is an ambiguity in the

+ version number between 1.0 and 1.1

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "SPL-1.0"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Sun_Public_License

+ '''

+ 

+ [fedora]

+ 

+ name = "Sun Public License"

+ abbreviation = "SPL"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "SWL"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/SWL

+ '''

+ 

+ [fedora]

+ 

+ name = "Scheme Widget Library (SWL) Software License Agreement"

+ abbreviation = "SWL"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Saxpath"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Saxpath_License

+ '''

+ 

+ [fedora]

+ 

+ name = "Saxpath License"

+ abbreviation = "Saxpath"

@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "Sendmail-8.23"

+ status = "approved"

+ 

+ text = '''

+ http://www.sendmail.org/ftp/LICENSE

+ '''

+ 

+ [fedora]

+ 

+ name = "Sendmail License"

+ abbreviation = "Sendmail"

+ 

+ notes = '''

+ SPDX also has https://spdx.org/licenses/Sendmail.html text on link Fedora has

+ goes to "8.23" version

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Sleepycat"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Sleepycat

+ '''

+ 

+ [fedora]

+ 

+ name = "Sleepycat Software Product License"

+ abbreviation = "Sleepycat"

@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "Spencer-86"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License

+ '''

+ 

+ [fedora]

+ 

+ name = "Henry Spencer Reg-Ex Library License"

+ abbreviation = "HSRL"

+ 

+ notes = '''

+ Fedora shows 2 different licenses on this page, SPDX includes them both, plus

+ also a third variant from 99

+ '''

@@ -0,0 +1,9 @@ 

+ [license]

+ 

+ expression = "Spencer-94"

+ status = "approved"

+ 

+ [fedora]

+ 

+ name = "Henry Spencer Reg-Ex Library License"

+ abbreviation = "HSRL"

@@ -0,0 +1,20 @@ 

+ [license]

+ 

+ expression = "StandardML-NJ"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/MIT

+ '''

+ 

+ [fedora]

+ 

+ name = "Standard ML of New Jersey License"

+ abbreviation = "MIT"

+ 

+ notes = '''

+ https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#Standard_ML_of_New

+ _Jersey_Variant  There are other versions of this license that are more generic

+ (http://www2.cs.tum.edu/projects/cup/) , without ""Lucent""; this license needs

+ to be templated for the usual variables.

+ '''

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "TCL"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/TCL

+ '''

+ 

+ [fedora]

+ 

+ name = "TCL/TK License"

+ abbreviation = "TCL"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "TMate"

+ status = "approved"

+ 

+ text = '''

+ http://svnkit.com/license.html

+ '''

+ 

+ [fedora]

+ 

+ name = "TMate Open Source License"

+ abbreviation = "TMate"

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "TORQUE-1.1"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/TORQUEv1.1

+ '''

+ 

+ [fedora]

+ 

+ name = "TORQUE v2.5+ Software License v1.1"

+ abbreviation = "TORQUEv1.1"

+ 

+ notes = '''

+ choice of law Utah. Release in Feb. 2014

+ '''

file added
+17
@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "TOSL"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/TOSL

+ '''

+ 

+ [fedora]

+ 

+ name = "Trusster Open Source License"

+ abbreviation = "TOSL"

+ 

+ notes = '''

+ per Fedora, sleepycat like but one substantial difference

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "UPL-1.0"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/UPL

+ '''

+ 

+ [fedora]

+ 

+ name = "Universal Permissive License"

+ abbreviation = "UPL"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Unicode-DFS-2015"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Unicode

+ '''

+ 

+ [fedora]

+ 

+ name = "Unicode License"

+ abbreviation = "Unicode"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Unlicense"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Unlicense

+ '''

+ 

+ [fedora]

+ 

+ name = "Unlicense"

+ abbreviation = "Unlicense"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "VOSTROM"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/VOSTROM

+ '''

+ 

+ [fedora]

+ 

+ name = "VOSTROM Public License for Open Source"

+ abbreviation = "VOSTROM"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "VSL-1.0"

+ status = "approved"

+ 

+ text = '''

+ http://opensource.org/licenses/vovidapl.php

+ '''

+ 

+ [fedora]

+ 

+ name = "Vovida Software License v. 1.0"

+ abbreviation = "VSL"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Vim"

+ status = "approved"

+ 

+ text = '''

+ http://vimdoc.sourceforge.net/htmldoc/uganda.html

+ '''

+ 

+ [fedora]

+ 

+ name = "Vim License"

+ abbreviation = "Vim"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "W3C"

+ status = "approved"

+ 

+ text = '''

+ http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231

+ '''

+ 

+ [fedora]

+ 

+ name = "W3C Software Notice and License"

+ abbreviation = "W3C"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "WTFPL"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/WTFPL

+ '''

+ 

+ [fedora]

+ 

+ name = "Do What The F*ck You Want To Public License"

+ abbreviation = "WTFPL"

@@ -0,0 +1,24 @@ 

+ [license]

+ 

+ expression = "WXwindows"

+ status = "approved"

+ 

+ text = '''

+ http://www.wxwidgets.org/manuals/stable/wx_wxlicense.html

+ '''

+ 

+ [fedora]

+ 

+ name = "wxWidgets Library License"

+ abbreviation = "wxWidgets"

+ 

+ notes = '''

+ see https://www.wxwidgets.org/about/licence/ - not sure time frame of this, but

+ says it's same as wxWindows webarchive for wxwidgets URL that Fedora has shows

+ wxWindows license going back to 2008, https://web.archive.org/web/20080425022039

+ /http://docs.wxwidgets.org/stable/wx_wxlicense.html seems to appear in Fedora,

+ see: https://src.fedoraproject.org/rpms/python-wxpython4/blob/rawhide/f/python-

+ wxpython4.spec - check for actual text to see if it is different or not This is

+ actually the *wxWindows* (not wxWidget) Library Licence, Version 3.1. The SPDX

+ list didn't retain the version number.

+ '''

file added
+17
@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "Wsuipa"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Wsuipa

+ '''

+ 

+ [fedora]

+ 

+ name = "Wsuipa License"

+ abbreviation = "Wsuipa"

+ 

+ notes = '''

+ part of TEX

+ '''

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "XSkat"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/XSkat_License

+ '''

+ 

+ [fedora]

+ 

+ name = "XSkat License"

+ abbreviation = "XSkat"

file added
+17
@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "Xerox"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Xerox

+ '''

+ 

+ [fedora]

+ 

+ name = "Xerox License"

+ abbreviation = "Xerox"

+ 

+ notes = '''

+ Currently identified by fossology as "Xerox"

+ '''

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "YPL-1.1"

+ status = "approved"

+ 

+ text = '''

+ http://www.zimbra.com/license/yahoo_public_license_1.1.html

+ '''

+ 

+ [fedora]

+ 

+ name = "Yahoo Public License v 1.1"

+ abbreviation = "YPLv1.1"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "ZPL-2.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.zope.org/Resources/ZPL

+ '''

+ 

+ [fedora]

+ 

+ name = "Zope Public License v 2.0"

+ abbreviation = "ZPLv2.0"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "ZPL-2.1"

+ status = "approved"

+ 

+ text = '''

+ http://www.zope.org/Resources/ZPL

+ '''

+ 

+ [fedora]

+ 

+ name = "Zope Public License v 2.1"

+ abbreviation = "ZPLv2.1"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Zed"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Zed

+ '''

+ 

+ [fedora]

+ 

+ name = "Zed License"

+ abbreviation = "Zed"

@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "Zend-2.0"

+ status = "approved"

+ 

+ text = '''

+ http://www.zend.com/license/2_00.txt

+ '''

+ 

+ [fedora]

+ 

+ name = "Zend License v2.0"

+ abbreviation = "Zend"

+ 

+ notes = '''

+ Currently identified by fossology as "Zend-2.0", which is consistent with SPDX

+ naming scheme

+ '''

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "Zlib"

+ status = "approved"

+ 

+ text = '''

+ http://www.gzip.org/zlib/zlib_license.html

+ '''

+ 

+ [fedora]

+ 

+ name = "zlib/libpng License"

+ abbreviation = "zlib"

@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "diffmark"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/diffmark

+ '''

+ 

+ [fedora]

+ 

+ name = "diffmark license"

+ abbreviation = "diffmark"

+ 

+ notes = '''

+ License text "1. you can do what you want with it 2. I refuse any responsibility

+ for the consequences" May be single package license

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "dvipdfm"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/dvipdfm

+ '''

+ 

+ [fedora]

+ 

+ name = "dvipdfm License"

+ abbreviation = "dvipdfm"

+ 

+ notes = '''

+ Permissive license. May be a one time license

+ '''

file added
+18
@@ -0,0 +1,18 @@ 

+ [license]

+ 

+ expression = "eGenix"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/eGenix.com_Public_License_1.1.0

+ '''

+ 

+ [fedora]

+ 

+ name = "eGenix.com Public License 1.1.0"

+ abbreviation = "eGenix"

+ 

+ notes = '''

+ Based on CNRI license and may be for one project. Official license site

+ http://www.egenix.com/products/eGenix.com-Public-License-1.1.0.pdf

+ '''

file added
+19
@@ -0,0 +1,19 @@ 

+ [license]

+ 

+ expression = "iMatix"

+ status = "approved"

+ 

+ text = '''

+ http://legacy.imatix.com/html/sfl/sfl4.htm#license

+ '''

+ 

+ [fedora]

+ 

+ name = "iMatix Standard Function Library Agreement"

+ abbreviation = "iMatix"

+ 

+ notes = '''

+ Permissive license. May be just for single library. might want to search for

+ original version of license, though - it mentions a URL above and there is none

+ in this version.

+ '''

@@ -0,0 +1,17 @@ 

+ [license]

+ 

+ expression = "libtiff"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/libtiff

+ '''

+ 

+ [fedora]

+ 

+ name = "libtiff License"

+ abbreviation = "libtiff"

+ 

+ notes = '''

+ BSD/MIT like

+ '''

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "mpich2"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/MIT

+ '''

+ 

+ [fedora]

+ 

+ name = "mpich2 License"

+ abbreviation = "MIT"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "psfrag"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/psfrag

+ '''

+ 

+ [fedora]

+ 

+ name = "psfrag License"

+ abbreviation = "psfrag"

@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "psutils"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/psutils

+ '''

+ 

+ [fedora]

+ 

+ name = "psutils License"

+ abbreviation = "psutils"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "xinetd"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Xinetd_License

+ '''

+ 

+ [fedora]

+ 

+ name = "xinetd License"

+ abbreviation = "xinetd"

file added
+13
@@ -0,0 +1,13 @@ 

+ [license]

+ 

+ expression = "xpp"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/xpp

+ '''

+ 

+ [fedora]

+ 

+ name = "XPP License"

+ abbreviation = "xpp"

@@ -0,0 +1,19 @@ 

+ [license]

+ 

+ expression = "zlib-acknowledgement"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement

+ '''

+ 

+ [fedora]

+ 

+ name = "zlib/libpng License with Acknowledgement"

+ abbreviation = "zlib with acknowledgement"

+ 

+ notes = '''

+ will need to templatize copyright/acknowledgement statement in middle of license

+ text  - decided to not templatize; need to use different short name b/c "with"

+ is an operator for SPDX license expression

+ '''

file added
+19
@@ -0,0 +1,19 @@ 

+ [license]

+ 

+ expression = "zlib"

+ status = "approved"

+ 

+ text = '''

+ https://fedoraproject.org/wiki/Licensing/Teeworlds

+ '''

+ 

+ [fedora]

+ 

+ name = "Teeworlds License"

+ abbreviation = "Teeworlds"

+ 

+ notes = '''

+ Fedora page mentions additional 4th clause as option - is this variant found? if

+ so, then might need new entry in SPDX In its Free version (cf. fedora Wiki for

+ details), it is identical to the Zlib license.

+ '''

file added
+57
@@ -0,0 +1,57 @@ 

+ Affero General Public License 3.0 with Zarafa trademark exceptions	AGPLv3 with exceptions	AGPL-3.0-only WITH <exception identifier> AGPL-3.0-or-later WITH <exception identifier>		NO	exceptions		I don't think we have this exception on the SPDX list - find actual text and add	http://www.zarafa.com/content/affero-gplv3	Single product instance

+ Array Input Method Public License	Array			NO			only saw license listed for gcin project in Rawhide. downloaded 3.9 and only saw LGPL ??	https://fedoraproject.org/wiki/Licensing/Array	

+ BeOpen Open Source License Agreement Version 1	BeOpen			NO			not listed in Rawhide - don't add to SPDX	https://fedoraproject.org/wiki/Licensing/BeOpen	Included on SPDX List as part of the greater Python v2 license. is this used by itself?  if so, then add as an individual license (Tom I. did a bunch of research on Python licensing some time ago - that may be useful here)  - should we ask Fedora about this, where it's used and frequency? Does Fedora treat the Python stack as separate licenses?

+ Bibtex License	Bibtex			NO			did not find in Source Rawhide list  check binaries?	https://fedoraproject.org/wiki/Licensing/Bibtex	Permissive license with requirement to rename any modified files.  need to consider how to manage variations (see: http://osl.ugr.es/CTAN/biblio/bibtex/contrib/sort-by-letters/README). that is, should we templatize the actual filenames in the ""original"" license version, since they may or may not be included? - should we ask Fedora about this issue, are there variations with other filenames? 

+ Copyright Attribution Only	Copyright only			NO		category	SPDX doesn't accomodate a generic statement - would be good to know more about how this is used	https://fedoraproject.org/wiki/Licensing/CopyrightOnly	Simple "license" that requires copyright only

+ CP/M License	CPM			NO			one-off email "license" (sort of painful to add this to the SPDX License List for obvious reasons...)	https://fedoraproject.org/wiki/Licensing/CPM	

+ CRC32 License	CRC32			NO			super short one-sentence license	https://fedoraproject.org/wiki/Licensing/CRC32	

+ Docbook MIT License	DMIT			NO			looks to be used by docbook project?	https://fedoraproject.org/wiki/Licensing/DMIT	

+ DO WHATEVER PUBLIC LICENSE	DWPL			NO			2 project listed in Rawhide with this license	https://fedoraproject.org/wiki/Licensing/DWPL	Basically Beerware without the buy-me-a-beer part. If used in Fedora, then add to SPDX

+ Fedora Directory Server License	GPLv2 with exceptions			NO	exceptions	category	link to license in Fedora is not found - need help from Fedora as to what this is	http://directory.fedoraproject.org/wiki/GPL_Exception_License_Text	GPLv2 with exception to link to certain well defined "Approved Interfaces".  Add?

+ Inner Net License	Inner-Net			NO			in one package - glibc	https://fedoraproject.org/wiki/Licensing/Inner_Net_License	

+ Jabber Open Source License	Jabber			NO			license doesn't appear to be in Fedora, if that's the case, then don't worry about it SPDX to still consider if it should be added as per OSI site	http://opensource.org/licenses/jabberpl.php	OSI approved, but no longer used Research found that version on OSI site is not the same as version at http://archive.jabber.org/core/JOSL.pdf (substantive diff includes inclusion in the latter of a definition of Source Code and "reasonably necessarly" qualifier in patent grant) see https://lists.spdx.org/g/Spdx-legal/message/435?p=,,,20,0,0,0::Created,,jabber,20,2,0,22080275 for doc with diff

+ JPython License (old)	JPython			NO			not listed in Rawhide 	http://www.jython.org/license.html	link broken, see https://web.archive.org/web/20160310111940/https://www.jython.org/license.html - stack of 3 licenses, each of which can be respresented by SPDX: PSF-2.0 AND BSD-3-Clause AND CNRI-Jython

+ Julius License	Julius			NO			project appears to now be under BSD-3-Clause, see https://github.com/julius-speech/julius/blob/master/LICENSE	https://fedoraproject.org/wiki/Licensing/Julius	Japanese and English text license under Japanese law.  FOSS license. 

+ Knuth License	Knuth			NO			only appears in texlive-base package??	http://tug.org/TUGboat/Articles/tb11-4/tb30knut.pdf	Does not meet FOSS elements.  No addition to the code upon death of author, etc. 

+ GNU Lesser General Public License v2 (or 2.1), with exceptions	LGPLv2 with exceptions	LGPL-2.0 WITH ... LGPL-2.1 WITH ...		YES	exceptions	category	are there any LGPL exceptions actually in use in Fedora? list just says to email list for approval	Please be sure that any exceptions are approved by emailing them to legal@lists.fedoraproject.org first.	

+ GNU Lesser General Public License v2 (or 2.1) or later, with exceptions	LGPLv2+ with exceptions	LGPL-2.0-or-later WITH ... LGPL-2.1-or-later WITH ...		YES	exceptions	category	are there any LGPL exceptions actually in use in Fedora? list just says to email list for approval	Please be sure that any exceptions are approved by emailing them to legal@lists.fedoraproject.org first.	

+ GNU Lesser General Public License v3.0 only, with exceptions	LGPLv3 with exceptions	LGPL-3.0-only WITH ...		YES	exceptions	category	are there any LGPL exceptions actually in use in Fedora? list just says to email list for approval	Please be sure that any exceptions are approved by emailing them to legal@lists.fedoraproject.org first.	No specific exception to approve for SPDX. SPDX uses specific short identifiers for each exception

+ GNU Lesser General Public License v3.0 or later, with exceptions	LGPLv3+ with exceptions	LGPL-3.0-or-later WITH ...		YES	exceptions	category	are there any LGPL exceptions actually in use in Fedora? list just says to email list for approval	Please be sure that any exceptions are approved by emailing them to legal@lists.fedoraproject.org first.	No specific exception to approve for SPDX. SPDX uses specific short identifiers for each exception

+ Lhcyr License	Lhcyr			NO			not in current Rawhide list	https://fedoraproject.org/wiki/Licensing/Lhcyr	Permissive license.    old, not worth adding

+ Lisp Library General Public License	LLGPL			NO	exceptions		license listed fro common-lisp-controller - check still current?	A GPL or LGPL licensed package that lacks any statement of what version that it's licensed under in the source code/program output/accompanying docs is technically licensed under *any* version of the GPL or LGPL, not just the version in whatever COPYING f	Provides additional definitions to the LGPLv2.1 specific to Lisp programming language. 

+ Logica Open Source License	Logica			NO			not listed in Rawhide list	http://opensmpp.logica.com/CommonPart/Download/Download.htm	Appears to be specific to Logica code and under the laws of Ireland license appears here: https://github.com/OpenSmpp/opensmpp/blob/master/LICENSE_LOGICA,  The license indicates that it has been superseded.  

+ LEGO Open Source License Agreement	LOSLA			NO			not listed in Rawhide list	https://fedoraproject.org/wiki/Licensing/LOSLA	

+ mecab-ipadic license	mecab-ipadic			NO			listed as a license for packages: mecab-ipadic, mozc fcitx5-mozc  - need to download and check actual license text	http://www.icot.or.jp/ARCHIVE/terms-and-conditions-for-IFS-J.html	Link broken not sure of license terms - text from license cut and pasted into comments, but not sure where it was found... so can't be sure it's what Fedora intended  "Copyright 2000, 2001, 2002, 2003 Nara Institute of Science and Technology.  All Rights Reserved.  Use, reproduction, and distribution of this software is permitted. Any copy of this software, whether in its original form or modified, must include both the above copyright notice and the following paragraphs.  Nara Institute of Science and Technology (NAIST), the copyright holders, disclaims all warranties with regard to this software, including all implied warranties of merchantability and fitness, in no event shall NAIST be liable for any special, indirect or consequential damages or any damages whatsoever resulting from loss of use, data or profits, whether in an action of contract, negligence or other tortuous action, arising out of or in connection with the use or performance of this software.  A large portion of the dictionary entries originate from ICOT Free Software.  The following conditions for ICOT Free Software applies to the current dictionary as well.  Each User may also freely distribute the Program, whether in its original form or modified, to any third party or parties, PROVIDED that the provisions of Section 3 (""NO WARRANTY"") will ALWAYS appear on, or be attached to, the Program, which is distributed substantially in the same form as set out herein and that such intended distribution, if actually made, will neither violate or otherwise contravene any of the laws and regulations of the countries having jurisdiction over the User or the intended distribution itself.  NO WARRANTY  The program was produced on an experimental basis in the course of the research and development conducted during the project and is provided to users as so produced on an experimental basis.  Accordingly, the program is provided without any warranty whatsoever, whether express, implied, statutory or otherwise.  The term ""warranty"" used herein includes, but is not limited to, any warranty of the quality, performance, merchantability and fitness for a particular purpose of the program and the nonexistence of any infringement or violation of any right of any third party.  Each user of the program will agree and understand, and be deemed to have agreed and understood, that there is no warranty whatsoever for the program and, accordingly, the entire risk arising from or otherwise connected with the program is assumed by the user.  Therefore, neither ICOT, the copyright holder, or any other organization that participated in or was otherwise related to the development of the program and their respective officials, directors, officers and other employees shall be held liable for any and all damages, including, without limitation, general, special, incidental and consequential damages, arising out of or otherwise in connection with the use or inability to use the program or any product, material or result produced or otherwise obtained by using the program, regardless of whether they have been advised of, or otherwise had knowledge of, the possibility of such damages at any time during the project or thereafter.  Each user will be deemed to have agreed to the foregoing by his or her commencement of use of the program.  The term ""use"" as used herein includes, but is not limited to, the use, modification, copying and distribution of the program and the production of secondary products from the program.  In the case where the program, whether in its original form or modified, was distributed or delivered to or received by a user from any person, organization or entity other than ICOT, unless it makes or grants independently of ICOT any specific warranty to the user in writing, such person, organization or entity, will also be exempted from and not be held liable to the user for any such damages as noted above as far as the program is concerned. ˜˜ ' "

+ midnight License	midnight			NO			not listed in current Rawhide list	https://fedoraproject.org/wiki/Licensing/midnight	FOSS license for single package

+ mod_macro License	mod_macro			NO			not listed in current Rawhide list	http://www.cri.ensmp.fr/~coelho/mod_macro/mod_macro/LICENSE	link broken - is this it?  https://people.apache.org/~fabien/mod_macro/LICENSE also see https://fossies.org/linux/mod_macro/LICENSE

+ Newmat License	Newmat			NO			not listed in Rawhide list	https://fedoraproject.org/wiki/Licensing/Newmat_License	

+ Nmap License (not Nmap Public Source License)	Nmap			NO			is in one project in Fedora. Not sure how to deal with, as seems to be both an exception to GPL and explanation of GPL	https://fedoraproject.org/wiki/Licensing/Nmap	

+ OpenPBS License	OpenPBS			NO			listed for torque project, but only see Torque-1.1 license in upstream repo??	https://fedoraproject.org/wiki/Licensing/OpenPBS	

+ OReilly License	OReilly			NO			only shows up in Rawhide list for http://wsdlpull.sourceforge.net project ??	https://fedoraproject.org/wiki/Licensing/OReilly	permissive license

+ Par License	Par			NO			doesn't seem to be in Rawhide	https://fedoraproject.org/wiki/Licensing/Par	

+ PlainTeX License	PlainTeX			NO			doesn't seem to be in Rawhide	https://fedoraproject.org/wiki/Licensing/PlainTeX	

+ Public Domain	Public Domain			NO			SPDX would use specific identifiers for public domain dedications (some of which might be on list) or can add new ones (or use LicenseRef-?"	Being in the public domain is not a license; rather, it means the material is not copyrighted and no license is needed.	SPDX does nto have a generic identifier - for the following reason:  http://wiki.spdx.org/view/Legal_Team/Decisions/Dealing_with_Public_Domain_within_SPDX_Files_(DRAFT)

+ Python License	Python			NO			seems to still be in Fedora, see https://src.fedoraproject.org/rpms/python-functools32/blob/f28/f/python-functools32.spec check actual text	http://www.python.org/2.0.1/license.html	link broken. SPDX List has Python-2.0 text at https://docs.python.org/3/license.html is a bit different than Python-2.0 and may not be able to be accomodated via markup

+ radvd License	radvd			NO				https://fedoraproject.org/wiki/Licensing/radvd_License	

+ REX License	REX			NO				https://fedoraproject.org/wiki/Licensing/REX	

+ Rice BSD	RiceBSD			NO			Fedora link works now - license is BSD-3-Clause with an additional clause re: modifications.  doesnt seem to appear in Fedora - confirm and if not, then don't add to SPDX	https://fedoraproject.org/wiki/Licensing/Rice_BSD_License	link is broken, license is old and no current link, also found: http://www.caam.rice.edu/software/ARPACK/RiceBSD.txt which appears that it was changed at some point to be simply a BSD-3-Clause

+ Romio License	Romio			NO			Fedora link works now and has licene text. still in Fedora - see https://src.fedoraproject.org/rpms/openmpi/blob/rawhide/f/openmpi.spec   confirm and add to sPDX? (similar to existing license)	https://fedoraproject.org/wiki/Licensing/Romio_License	see current license here: https://www.open-mpi.org/community/license.php - it appears that license was changed to BSD-3-Clause, so rejecting, can always add later, if older versions are in wide-use

+ RSA License	RSA			NO				https://fedoraproject.org/wiki/Licensing/RSA	

+ Rsfs License	Rsfs			NO			confirm no longer in Fedora (and then don't add to SPDX)	https://fedoraproject.org/wiki/Licensing/Rsfs	this text is part of a longer letter and so is making a call of what is the license to begin with - see: http://mirror.utexas.edu/ctan/fonts/rsfs/README

+ SCRIP License	SCRIP			NO				https://fedoraproject.org/wiki/Licensing/SCRIP	Way too specific "JL: this seems old and can't find it elsewhere... reject? PM: Add?-found wiki page and code available, although last contribution 3 yrs. ago (see http://oceans11.lanl.gov/trac/SCRIP/wiki ) - too specific, decided not to add"

+ SLIB License	SLIB			NO				http://www-swiss.ai.mit.edu/~jaffer/SLIB_COPYING.txt	The text at the given URL is not really the license it self, more an explanatory text mentionning public domain dedication and the actual license. On a side note, they seem to define a theshold for copyrightability at "a dozen of lines" "PM: Reject (not a license, but rather an explanation of how SLIB is licensed on file by file basis) DC: Reject (agree with PM) "

+ softSurfer License	softSurfer			NO				https://fedoraproject.org/wiki/Licensing/softSurfer	

+ SciTech MGL Public License	STMPL			NO				https://fedoraproject.org/wiki/Licensing/STMPL	this is the same as MPL 1.0 except for the preamble and amendment at end, due to this and that no one has seen it used currently, did not add

+ Trusted Computing Group License	TCGL			NO				https://fedoraproject.org/wiki/Licensing/TCGL	

+ Transitive Grace Period Public Licence	TGPPL			NO			This is really OSL-3.0 with a few minor changes having to do with the name and then the modifications to the license (last section). I think this was submitted to SPDX and we pointed out they should just use the "original"? check this	https://fedoraproject.org/wiki/Licensing/TGPPL	

+ Threeparttable License	Threeparttable			NO				https://fedoraproject.org/wiki/Licensing/Threeparttable	

+ Tolua License	Tolua			NO				https://fedoraproject.org/wiki/Licensing/Tolua	

+ Time::ParseDate License	TPDL			NO				https://fedoraproject.org/wiki/Licensing/TPDL	

+ Thor Public License	TPL			NO				https://fedoraproject.org/wiki/Licensing/ThorPublicLicense	As noted in Fedora's wiki, this is MPL-1.1 with an additionnal 0.1 section - this is the same as MPL 1.1 except for the added terms at the beginning, due to this and that no one has seen it used currently, did not add

+ Text-Tabs+Wrap License	TTWL			NO				https://fedoraproject.org/wiki/Licensing/TTWL	

+ Tumbolia Public License	Tumbolia			NO			very similar to FSFAP	https://fedoraproject.org/wiki/Licensing/Tumbolia	

+ UCAR License	UCAR			NO			used in one project - udunits2	https://fedoraproject.org/wiki/Licensing/UCAR	

+ Unicode Character Database Terms Of Use	UCD			NO				https://fedoraproject.org/wiki/Licensing/UCD	this license appears to have been replaced as of 1991 see  http://www.unicode.org/copyright.html#Exhibit1  

+ Vita Nuova Liberal Source License	VNLSL			NO			Fedora link now has text preserved - doesn't seem to be in Fedora, confirm	https://fedoraproject.org/wiki/Licensing/Vita_Nuova_Liberal_Source_License	no current copy of license elsewhere and seems old and very specific so not adding

+ Webmin License	Webmin			NO			Fedora link now has text - need to do more research on this	https://fedoraproject.org/wiki/Licensing/Webmin	This is a BSD-3-Clause with an additional set of patent-related restrictions same as BSD; can't find the patent clause in current download and unclear from Fedora page if this is really "part" of the license

+ Zope Public License v 1.0	ZPLv1.0			NO			SPDX has v 1.1, 2.0 and 2.1	http://www.zope.org/Resources/ZPL	There is no link to version 1.0 of the license on http://old.zope.org/Resources/License/ eventhough this version is mentioned. The link http://www.zope.org/Resources/ZPL now gives a 404ish "Die Seite existiert leider nicht…" fine to add if someone can find a version of the license text; it is listed here: http://old.zope.org/Resources/License/ (as well as other older licenses) but no active link) Reject (old licensethat has been replaced at least 3 times since 1.0 and can't find copy of old license)"

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: 9wm License (Original)

- name: 9wm License (Original)

- url: http://unauthorised.org/dhog/9wm/README

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: AAL

- fedora_name: Attribution Assurance License

- name: Attribution Assurance License

- spdx_abbrev: AAL

- spdx_name: Attribution Assurance License

- url: http://opensource.org/licenses/attribution.php

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: AMAP License

- name: AMAP License

- url: https://fedoraproject.org/wiki/Licensing/AMAP_License

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: AMDPLPA

- fedora_name: AMDs plpa_map.c License

- name: AMD's plpa_map.c License

- spdx_abbrev: AMDPLPA

- spdx_name: AMDs plpa_map.c License

- url: https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: AMS

- fedora_name: AMS Bluesky Font License

- name: AMS Bluesky Font License

- url: https://fedoraproject.org/wiki/Licensing/AMS

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: License Agreement for Application Response Measurement (ARM) SDK

- name: License Agreement for Application Response Measurement (ARM) SDK

- url: https://fedoraproject.org/wiki/Licensing/ApplicationResponseMeasurementSDKLicense

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Abstyles

- fedora_name: Abstyles License

- name: Abstyles License

- spdx_abbrev: Abstyles

- spdx_name: Abstyles License

- url: https://fedoraproject.org/wiki/Licensing/Abstyles

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Academic Free License v1.1

- spdx_abbrev: AFL-1.1

- spdx_name: Academic Free License v1.1

- url: http://opensource.linux-mirror.org/licenses/afl-1.1.txt

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Academic Free License v1.2

- spdx_abbrev: AFL-1.2

- spdx_name: Academic Free License v1.2

- url: http://opensource.linux-mirror.org/licenses/afl-1.2.txt

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Academic Free License v2.0

- spdx_abbrev: AFL-2.0

- spdx_name: Academic Free License v2.0

- url: http://opensource.linux-mirror.org/licenses/afl-2.0.txt

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Academic Free License v2.1

- spdx_abbrev: AFL-2.1

- spdx_name: Academic Free License v2.1

- url: http://opensource.linux-mirror.org/licenses/afl-2.1.txt

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: AFL

- fedora_name: Academic Free License

- name: Academic Free License v3.0

- spdx_abbrev: AFL-3.0

- spdx_name: Academic Free License v3.0

- url: http://opensource.org/licenses/afl-3.0.php

@@ -1,7 +0,0 @@ 

- ---

- approved: no

- fedora_name: Adaptive Public License

- name: Adaptive Public License 1.0

- spdx_abbrev: APL-1.0

- spdx_name: Adaptive Public License 1.0

- url: https://opensource.org/licenses/apl1.0.php

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: APAFML

- fedora_name: Adobe Postscript AFM License

- name: Adobe Postscript AFM License

- spdx_abbrev: APAFML

- spdx_name: Adobe Postscript AFM License

- url: https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Adobe

- fedora_name: Adobe Systems Incorporated Source Code License Agreement

- name: Adobe Systems Incorporated Source Code License Agreement

- spdx_abbrev: Adobe-2006

- spdx_name: Adobe Systems Incorporated Source Code License Agreement

- url: https://fedoraproject.org/wiki/Licensing/AdobeLicense

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Utopia

- fedora_name: Adobe/TUG Utopia license agreement

- name: Adobe/TUG Utopia license agreement

- url: http://tug.org/fonts/utopia/LICENSE-utopia.txt

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Afmparse

- fedora_name: Afmparse License

- name: Afmparse License

- spdx_abbrev: Afmparse

- spdx_name: Afmparse License

- url: https://fedoraproject.org/wiki/Licensing/Afmparse

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: Agere LT Modem Driver License

- name: Agere LT Modem Driver License

- url: https://fedoraproject.org/wiki/Licensing/Agere_LT_Modem_Driver_License

@@ -1,7 +0,0 @@ 

- ---

- approved: no

- fedora_name: Aladdin Free Public License

- name: Aladdin Free Public License

- spdx_abbrev: Aladdin

- spdx_name: Aladdin Free Public License

- url: http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: ADSL

- fedora_name: Amazon Digital Services License

- name: Amazon Digital Services License

- spdx_abbrev: ADSL

- spdx_name: Amazon Digital Services License

- url: https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: Amazon Software License

- name: Amazon Software License

- url: http://aws.amazon.com/asl/

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: ANTLR-PD

- fedora_name: ANTLR Software Rights Notice

- name: ANTLR Software Rights Notice

- spdx_abbrev: ANTLR-PD

- spdx_name: ANTLR Software Rights Notice

- url: http://www.antlr2.org/license.html

@@ -1,4 +0,0 @@ 

- ---

- approved: yes

- name: The Antlr 2.7.7 License

- url: http://www.antlr2.org/download/antlr-2.7.7.tar.gz

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: ASL 1.0

- fedora_name: Apache Software License 1.0

- name: Apache Software License 1.0

- spdx_abbrev: Apache-1.0

- spdx_name: Apache License 1.0

- url: http://www.apache.org/licenses/LICENSE-1.0

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: ASL 1.1

- fedora_name: QuickFix License

- name: QuickFix License

- url: http://www.quickfixengine.org/quickfix/doc/html/license.html

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: ASL 2.0

- fedora_name: Apache Software License 2.0

- name: apache-2.0

- spdx_abbrev: Apache-2.0

- spdx_name: Apache License 2.0

- url: http://www.apache.org/licenses/LICENSE-2.0

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: App-s2p

- fedora_name: App::s2p License

- name: App::s2p License

- url: https://fedoraproject.org/wiki/Licensing/App-s2p

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: AML

- fedora_name: Apple MIT License

- name: Apple MIT License

- spdx_abbrev: AML

- spdx_name: Apple MIT License

- url: https://fedoraproject.org/wiki/Licensing/Apple_MIT_License

@@ -1,7 +0,0 @@ 

- ---

- approved: no

- fedora_name: Apple Public Source License 1.0

- name: Apple Public Source License 1.0

- spdx_abbrev: APSL-1.0

- spdx_name: Apple Public Source License 1.0

- url: https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0

@@ -1,7 +0,0 @@ 

- ---

- approved: no

- fedora_name: Apple Public Source License 1.1

- name: Apple Public Source License 1.1

- spdx_abbrev: APSL-1.1

- spdx_name: Apple Public Source License 1.1

- url: http://www.opensource.apple.com/source/IOSerialFamily/IOSerialFamily-7/APPLE_LICENSE

@@ -1,7 +0,0 @@ 

- ---

- approved: no

- fedora_name: Apple Public Source License 1.2

- name: Apple Public Source License 1.2

- spdx_abbrev: APSL-1.2

- spdx_name: Apple Public Source License 1.2

- url: http://www.samurajdata.se/opensource/mirror/licenses/apsl.php

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: APSL 2.0

- fedora_name: Apple Public Source License 2.0

- name: Apple Public Source License 2.0

- spdx_abbrev: APSL-2.0

- spdx_name: Apple Public Source License 2.0

- url: http://www.opensource.apple.com/license/apsl/

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: Apple Quicktime License

- name: Apple Quicktime License

- url: http://store.apple.com/Catalog/US/Images/quicktime.html

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: Apple iTunes License

- name: Apple iTunes License

- url: http://images.apple.com/legal/sla/docs/itunes.pdf

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: CDL

- fedora_name: Apples Common Documentation License, Version 1.0

- name: Apple's Common Documentation License, Version 1.0

- url: https://fedoraproject.org/wiki/Licensing/Common_Documentation_License

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: Aptana Public License

- name: Aptana Public License

- url: http://aptana.com/legal/apl/

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Arphic

- fedora_name: Arphic Public License

- name: Arphic Public License

- url: http://ftp.gnu.org/gnu/non-gnu/chinese-fonts-truetype/LICENSE

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Array

- fedora_name: Array Input Method Public License

- name: Array Input Method Public License

- url: https://fedoraproject.org/wiki/Licensing/Array

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Artistic License 1.0 (Perl)

- spdx_abbrev: Artistic-1.0-Perl

- spdx_name: Artistic License 1.0 (Perl)

- url: https://opensource.org/licenses/Artistic-Perl-1.0

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Artistic License 1.0 w/clause 8

- spdx_abbrev: Artistic-1.0-cl8

- spdx_name: Artistic License 1.0 w/clause 8

- url: http://opensource.org/licenses/Artistic-1.0

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Artistic License 1.0

- spdx_abbrev: Artistic-1.0

- spdx_name: Artistic License 1.0

- url: http://opensource.org/licenses/Artistic-1.0

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: Artistic 1.0 (original)

- name: Artistic 1.0 (original)

- url: http://dev.perl.org/licenses/artistic.html

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Artistic 2.0

- fedora_name: Artistic 2.0

- name: Artistic License 2.0

- spdx_abbrev: Artistic-2.0

- spdx_name: Artistic License 2.0

- url: http://www.perlfoundation.org/artistic_license_2_0

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Artistic clarified

- fedora_name: Artistic (clarified)

- name: Clarified Artistic License

- spdx_abbrev: ClArtistic

- spdx_name: Clarified Artistic License

- url: https://fedoraproject.org/wiki/Licensing:ArtisticClarified?rd=Licensing/ArtisticClarified

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: Frontier Artistic License

- name: Frontier Artistic License

- url: http://www.spinwardstars.com/frontier/fal.html

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: ARL

- fedora_name: Aspell-ru License

- name: Aspell-ru License

- url: https://fedoraproject.org/wiki/Licensing/AspellRu

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: 0BSD

- fedora_name: Zero-Clause BSD

- name: BSD Zero Clause License

- spdx_abbrev: 0BSD

- spdx_name: BSD Zero Clause License

- url: https://fedoraproject.org/wiki/Licensing/ZeroClauseBSD

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: AMPAS BSD

- fedora_name: Academy of Motion Picture Arts and Sciences BSD

- name: Academy of Motion Picture Arts and Sciences BSD

- spdx_abbrev: AMPAS

- spdx_name: Academy of Motion Picture Arts and Sciences BSD

- url: https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: BSD 2-clause NetBSD License

- spdx_abbrev: BSD-2-Clause-NetBSD

- spdx_name: BSD 2-clause NetBSD License

- url: http://www.netbsd.org/about/redistribution.html#default

@@ -1,7 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: BSD-2-Clause-Patent

- name: BSD + Patent License

- spdx_abbrev: BSD-2-Clause-Patent

- spdx_name: BSD-2-Clause Plus Patent License

- url: https://fedoraproject.org/wiki/Licensing/BSD-2-Clause-Patent

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- name: BSD 2-clause "Simplified" License

- spdx_abbrev: BSD-2-Clause

- spdx_name: BSD 2-clause "Simplified" License

- url: http://www.opensource.org/licenses/BSD-2-Clause

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: BSD 3-Clause Clear License

- spdx_abbrev: BSD-3-Clause-Clear

- spdx_name: BSD 3-Clause Clear License

- url: http://labs.metacarta.com/license-explanation.html#license

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: BSD 3-Clause No Nuclear License 2014

- spdx_abbrev: BSD-3-Clause-No-Nuclear-License-2014

- spdx_name: BSD 3-Clause No Nuclear License 2014

- url: https://java.net/projects/javaeetutorial/pages/BerkeleyLicense

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- name: BSD 3-Clause No Nuclear License

- spdx_abbrev: BSD-3-Clause-No-Nuclear-License

- spdx_name: BSD 3-Clause No Nuclear License

- url: https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.html

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- name: BSD 3-Clause No Nuclear Warranty

- spdx_abbrev: BSD-3-Clause-No-Nuclear-Warranty

- spdx_name: BSD 3-Clause No Nuclear Warranty

- url: https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: BSD-4-Clause (University of California-Specific)

- spdx_abbrev: BSD-4-Clause-UC

- spdx_name: BSD-4-Clause (University of California-Specific)

- url: http://www.freebsd.org/copyright/license.html

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: BSD 4-clause "Original" or "Old" License

- spdx_abbrev: BSD-4-Clause

- spdx_name: BSD 4-clause "Original" or "Old" License

- url: http://directory.fsf.org/wiki/License:BSD_4Clause

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: BSD Source Code Attribution

- spdx_abbrev: BSD-Source-Code

- spdx_name: BSD Source Code Attribution

- url: https://github.com/robbiehanson/CocoaHTTPServer/blob/master/LICENSE.txt

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: BSD

- fedora_name: Metasploit Framework License (post 2006)

- name: Metasploit Framework License (post 2006)

- url: https://fedoraproject.org/wiki/Licensing/Metasploit_Framework_License

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: BSD Protection

- fedora_name: BSD Protection License

- name: BSD Protection License

- spdx_abbrev: BSD-Protection

- spdx_name: BSD Protection License

- url: https://fedoraproject.org/wiki/Licensing/BSD_Protection_License

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: BSD with advertising

- fedora_name: Open Data License (GeoLite Country and GeoLite City databases)

- name: Open Data License (GeoLite Country and GeoLite City databases)

- url: https://fedoraproject.org/wiki/Licensing/BSD#OpenData_Variant

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: BSD with attribution

- fedora_name: BSD with attribution

- name: BSD with attribution

- spdx_abbrev: BSD-3-Clause-Attribution

- spdx_name: BSD with attribution

- url: https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: FBSDDL

- fedora_name: FreeBSD Documentation License

- name: FreeBSD Documentation License

- url: http://www.freebsd.org/copyright/freebsd-doc-license.html

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: LBNL BSD

- fedora_name: Lawrence Berkeley National Labs BSD variant license

- name: Lawrence Berkeley National Labs BSD variant license

- spdx_abbrev: BSD-3-Clause-LBNL

- spdx_name: Lawrence Berkeley National Labs BSD variant license

- url: https://fedoraproject.org/wiki/Licensing/LBNLBSD

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: RiceBSD

- fedora_name: Rice BSD

- name: Rice BSD

- url: https://fedoraproject.org/wiki/Licensing/Rice_BSD_License

@@ -1,4 +0,0 @@ 

- ---

- approved: yes

- name: The Asm BSD License

- url: http://asm.ow2.org/license.html

@@ -1,4 +0,0 @@ 

- ---

- approved: yes

- name: The BSD License

- url: http://repository.jboss.org/licenses/bsd.txt

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Baekmuk

- fedora_name: Baekmuk License

- name: Baekmuk License

- url: https://fedoraproject.org/wiki/Licensing/Baekmuk

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Bahyph

- fedora_name: Bahyph License

- name: Bahyph License

- spdx_abbrev: Bahyph

- spdx_name: Bahyph License

- url: https://fedoraproject.org/wiki/Licensing/Bahyph

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Barr

- fedora_name: Barr License

- name: Barr License

- spdx_abbrev: Barr

- spdx_name: Barr License

- url: https://fedoraproject.org/wiki/Licensing/Barr

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: BeOpen

- fedora_name: BeOpen Open Source License Agreement Version 1

- name: BeOpen Open Source License Agreement Version 1

- url: https://fedoraproject.org/wiki/Licensing/BeOpen

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Beerware

- fedora_name: Beerware License

- name: Beerware License

- spdx_abbrev: Beerware

- spdx_name: Beerware License

- url: https://fedoraproject.org/wiki/Licensing/Beerware

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Bibtex

- fedora_name: Bibtex License

- name: Bibtex License

- url: https://fedoraproject.org/wiki/Licensing/Bibtex

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: BitTorrent Open Source License v1.0

- spdx_abbrev: BitTorrent-1.0

- spdx_name: BitTorrent Open Source License v1.0

- url: http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/BitTorrent?r1=1.1&r2=1.1.1.1&diff_format=s

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: BitTorrent

- fedora_name: BitTorrent License

- name: BitTorrent Open Source License v1.1

- spdx_abbrev: BitTorrent-1.1

- spdx_name: BitTorrent Open Source License v1.1

- url: https://fedoraproject.org/wiki/Licensing/BitTorrent_Open_Source_License

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Bitstream Vera

- fedora_name: Bitstream Vera Font License

- name: Bitstream Vera Font License

- url: http://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Boost

- fedora_name: Boost Software License

- name: Boost Software License 1.0

- spdx_abbrev: BSL-1.0

- spdx_name: Boost Software License 1.0

- url: http://www.boost.org/LICENSE_1_0.txt

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Borceux

- fedora_name: Borceux license

- name: Borceux license

- spdx_abbrev: Borceux

- spdx_name: Borceux license

- url: https://fedoraproject.org/wiki/Licensing/Borceux

@@ -1,4 +0,0 @@ 

- ---

- approved: yes

- name: Bouncy Castle Licence

- url: http://www.bouncycastle.org/licence.html

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: CATOSL

- fedora_name: Computer Associates Trusted Open Source License 1.1

- name: Computer Associates Trusted Open Source License 1.1

- spdx_abbrev: CATOSL-1.1

- spdx_name: Computer Associates Trusted Open Source License 1.1

- url: http://opensource.org/licenses/CATOSL-1.1

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: CACert Root Distribution License

- name: CACert Root Distribution License

- url: https://fedoraproject.org/wiki/Licensing/CACert_Root_Distribution_License

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: CAcert Non-Related Persons Disclaimer and License

- name: CAcert Non-Related Persons Disclaimer and License

- url: http://www.cacert.org/policy/NRPDisclaimerAndLicence.php

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: CDDL-1.0

- fedora_name: Common Development Distribution License 1.0

- name: Common Development and Distribution License 1.0

- spdx_abbrev: CDDL-1.0

- spdx_name: Common Development and Distribution License 1.0

- url: http://repository.jboss.org/licenses/cddl.txt

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- name: Common Development and Distribution License (CDDL) and GNU Public License v.2

-   w/Classpath Exception

- spdx_abbrev: CDDL-1.0 OR GPL-2.0-with-classpath-exception

- url: https://netbeans.org/cddl-gplv2.html

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: CDDL-1.1

- fedora_name: Common Development Distribution License 1.1

- name: Common Development and Distribution License version 1.1

- spdx_abbrev: CDDL-1.1

- spdx_name: Common Development and Distribution License 1.1

- url: https://javaee.github.io/glassfish/LICENSE

@@ -1,4 +0,0 @@ 

- ---

- approved: yes

- name: Dual license consisting of the CDDL v1.1 and GPL v2

- url: https://oss.oracle.com/licenses/CDDL+GPL-1.1

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: CeCILL Free Software License Agreement v1.0

- spdx_abbrev: CECILL-1.0

- spdx_name: CeCILL Free Software License Agreement v1.0

- url: http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: CeCILL Free Software License Agreement v2.1

- spdx_abbrev: CECILL-2.1

- spdx_name: CeCILL Free Software License Agreement v2.1

- url: http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.html

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: CNRI Jython License

- spdx_abbrev: CNRI-Jython

- spdx_name: CNRI Jython License

- url: http://www.jython.org/license.html

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: CNRI Python Open Source GPL Compatible License Agreement

- spdx_abbrev: CNRI-Python-GPL-Compatible

- spdx_name: CNRI Python Open Source GPL Compatible License Agreement

- url: http://www.python.org/download/releases/1.6.1/download_win/

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: CNRI

- fedora_name: CNRI License (Old Python)

- name: CNRI Python License

- spdx_abbrev: CNRI-Python

- spdx_name: CNRI Python License

- url: http://www.opensource.org/licenses/CNRI-Python

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: CPAL

- fedora_name: CPAL License 1.0

- name: Common Public Attribution License 1.0

- spdx_abbrev: CPAL-1.0

- spdx_name: Common Public Attribution License 1.0

- url: http://www.opensource.org/licenses/CPAL-1.0

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: CPL

- fedora_name: Common Public License

- name: Common Public License, Version 1.0

- spdx_abbrev: CPL-1.0

- spdx_name: Common Public License 1.0

- url: http://www.eclipse.org/legal/cpl-v10.html

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: CPM

- fedora_name: CP/M License

- name: CP/M License

- url: https://fedoraproject.org/wiki/Licensing/CPM

@@ -1,7 +0,0 @@ 

- ---

- approved: no

- fedora_name: CodeProject Open License (CPOL)

- name: CodeProject Open License (CPOL)

- spdx_abbrev: CPOL-1.02

- spdx_name: Code Project Open License 1.02

- url: http://www.codeproject.com/info/cpol10.aspx

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: CRC32

- fedora_name: CRC32 License

- name: CRC32 License

- url: https://fedoraproject.org/wiki/Licensing/CRC32

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: C/Migemo License

- name: C/Migemo License

- url: https://fedoraproject.org/wiki/Licensing/CMigemo

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Caldera License

- spdx_abbrev: Caldera

- spdx_name: Caldera License

- url: http://www.lemis.com/grog/UNIX/ancient-source-all.pdf

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: CeCILL-B

- fedora_name: CeCILL-B License

- name: CeCILL-B License

- spdx_abbrev: CECILL-B

- spdx_name: CeCILL-B Free Software License Agreement

- url: http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: CeCILL-C

- fedora_name: CeCILL-C License

- name: CeCILL-C License

- spdx_abbrev: CECILL-C

- spdx_name: CeCILL-C Free Software License Agreement

- url: http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.html

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: CeCILL

- fedora_name: CeCILL License v2

- name: CeCILL License v2

- spdx_abbrev: CECILL-2.0

- spdx_name: CeCILL Free Software License Agreement v2.0

- url: http://www.cecill.info/licences/Licence_CeCILL_V2-fr.html

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Charter

- fedora_name: Charter License

- name: Charter License

- url: https://fedoraproject.org/wiki/Licensing/Charter

@@ -1,4 +0,0 @@ 

- ---

- approved: no

- name: Commons Clause

- url: https://fedoraproject.org/wiki/Licensing/CommonsClause

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Condor Public License v1.1

- spdx_abbrev: Condor-1.1

- spdx_name: Condor Public License v1.1

- url: http://research.cs.wisc.edu/condor/license.html#condor

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Condor

- fedora_name: Condor Public License

- name: Condor Public License

- url: http://research.cs.wisc.edu/htcondor/license.html

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Copyright only

- fedora_name: Copyright Attribution Only

- name: Copyright Attribution Only

- url: https://fedoraproject.org/wiki/Licensing/CopyrightOnly

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution 1.0

- spdx_abbrev: CC-BY-1.0

- spdx_name: Creative Commons Attribution 1.0

- url: http://creativecommons.org/licenses/by/1.0/legalcode

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution 2.0

- spdx_abbrev: CC-BY-2.0

- spdx_name: Creative Commons Attribution 2.0

- url: http://creativecommons.org/licenses/by/2.0/legalcode

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- name: Creative Commons Attribution 2.5

- spdx_abbrev: CC-BY-2.5

- spdx_name: Creative Commons Attribution 2.5

- url: http://creativecommons.org/licenses/by/2.5/legalcode

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution 4.0

- spdx_abbrev: CC-BY-4.0

- spdx_name: Creative Commons Attribution 4.0

- url: http://creativecommons.org/licenses/by/4.0/legalcode

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution Non Commercial 1.0

- spdx_abbrev: CC-BY-NC-1.0

- spdx_name: Creative Commons Attribution Non Commercial 1.0

- url: http://creativecommons.org/licenses/by-nc/1.0/legalcode

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution Non Commercial 2.0

- spdx_abbrev: CC-BY-NC-2.0

- spdx_name: Creative Commons Attribution Non Commercial 2.0

- url: http://creativecommons.org/licenses/by-nc/2.0/legalcode

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution Non Commercial 2.5

- spdx_abbrev: CC-BY-NC-2.5

- spdx_name: Creative Commons Attribution Non Commercial 2.5

- url: http://creativecommons.org/licenses/by-nc/2.5/legalcode

@@ -1,7 +0,0 @@ 

- ---

- approved: no

- fedora_name: Creative Commons Attribution-NonCommercial

- name: Creative Commons Attribution-NonCommercial

- spdx_abbrev: CC-BY-NC-3.0

- spdx_name: Creative Commons Attribution Non Commercial 3.0

- url: http://www.cacert.org/policy/NRPDisclaimerAndLicence.php

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution Non Commercial 4.0

- spdx_abbrev: CC-BY-NC-4.0

- spdx_name: Creative Commons Attribution Non Commercial 4.0

- url: http://creativecommons.org/licenses/by-nc/4.0/legalcode

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution Non Commercial No Derivatives 1.0

- spdx_abbrev: CC-BY-NC-ND-1.0

- spdx_name: Creative Commons Attribution Non Commercial No Derivatives 1.0

- url: http://creativecommons.org/licenses/by-nd-nc/1.0/legalcode

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution Non Commercial No Derivatives 2.0

- spdx_abbrev: CC-BY-NC-ND-2.0

- spdx_name: Creative Commons Attribution Non Commercial No Derivatives 2.0

- url: http://creativecommons.org/licenses/by-nc-nd/2.0/legalcode

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution Non Commercial No Derivatives 2.5

- spdx_abbrev: CC-BY-NC-ND-2.5

- spdx_name: Creative Commons Attribution Non Commercial No Derivatives 2.5

- url: http://creativecommons.org/licenses/by-nc-nd/2.5/legalcode

@@ -1,7 +0,0 @@ 

- ---

- approved: no

- fedora_name: Creative Commons Attribution-NonCommercial-NoDerivs

- name: Creative Commons Attribution-NonCommercial-NoDerivs

- spdx_abbrev: CC-BY-NC-ND-3.0

- spdx_name: Creative Commons Attribution Non Commercial No Derivatives 3.0

- url: http://creativecommons.org/licenses/by-nc-nd/3.0/

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution Non Commercial No Derivatives 4.0

- spdx_abbrev: CC-BY-NC-ND-4.0

- spdx_name: Creative Commons Attribution Non Commercial No Derivatives 4.0

- url: http://creativecommons.org/licenses/by-nc-nd/4.0/legalcode

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution Non Commercial Share Alike 1.0

- spdx_abbrev: CC-BY-NC-SA-1.0

- spdx_name: Creative Commons Attribution Non Commercial Share Alike 1.0

- url: http://creativecommons.org/licenses/by-nc-sa/1.0/legalcode

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution Non Commercial Share Alike 2.0

- spdx_abbrev: CC-BY-NC-SA-2.0

- spdx_name: Creative Commons Attribution Non Commercial Share Alike 2.0

- url: http://creativecommons.org/licenses/by-nc-sa/2.0/legalcode

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution Non Commercial Share Alike 2.5

- spdx_abbrev: CC-BY-NC-SA-2.5

- spdx_name: Creative Commons Attribution Non Commercial Share Alike 2.5

- url: http://creativecommons.org/licenses/by-nc-sa/2.5/legalcode

@@ -1,7 +0,0 @@ 

- ---

- approved: no

- fedora_name: Creative Commons Attribution-NonCommercial-ShareAlike

- name: Creative Commons Attribution-NonCommercial-ShareAlike

- spdx_abbrev: CC-BY-NC-SA-3.0

- spdx_name: Creative Commons Attribution Non Commercial Share Alike 3.0

- url: http://creativecommons.org/licenses/by-nc-sa/3.0/

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution Non Commercial Share Alike 4.0

- spdx_abbrev: CC-BY-NC-SA-4.0

- spdx_name: Creative Commons Attribution Non Commercial Share Alike 4.0

- url: http://creativecommons.org/licenses/by-nc-sa/4.0/legalcode

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution No Derivatives 1.0

- spdx_abbrev: CC-BY-ND-1.0

- spdx_name: Creative Commons Attribution No Derivatives 1.0

- url: http://creativecommons.org/licenses/by-nd/1.0/legalcode

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution No Derivatives 2.0

- spdx_abbrev: CC-BY-ND-2.0

- spdx_name: Creative Commons Attribution No Derivatives 2.0

- url: http://creativecommons.org/licenses/by-nd/2.0/legalcode

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution No Derivatives 2.5

- spdx_abbrev: CC-BY-ND-2.5

- spdx_name: Creative Commons Attribution No Derivatives 2.5

- url: http://creativecommons.org/licenses/by-nd/2.5/legalcode

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution No Derivatives 4.0

- spdx_abbrev: CC-BY-ND-4.0

- spdx_name: Creative Commons Attribution No Derivatives 4.0

- url: http://creativecommons.org/licenses/by-nd/4.0/legalcode

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: CC-BY-ND

- fedora_name: Creative Commons Attribution-NoDerivs

- name: Creative Commons Attribution-NoDerivs

- spdx_abbrev: CC-BY-ND-3.0

- spdx_name: Creative Commons Attribution No Derivatives 3.0

- url: http://creativecommons.org/licenses/by-nd/3.0/

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution Share Alike 1.0

- spdx_abbrev: CC-BY-SA-1.0

- spdx_name: Creative Commons Attribution Share Alike 1.0

- url: http://creativecommons.org/licenses/by-sa/1.0/legalcode

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution Share Alike 2.0

- spdx_abbrev: CC-BY-SA-2.0

- spdx_name: Creative Commons Attribution Share Alike 2.0

- url: http://creativecommons.org/licenses/by-sa/2.0/legalcode

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Creative Commons Attribution Share Alike 2.5

- spdx_abbrev: CC-BY-SA-2.5

- spdx_name: Creative Commons Attribution Share Alike 2.5

- url: http://creativecommons.org/licenses/by-sa/2.5/legalcode

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- name: Creative Commons Attribution Share Alike 4.0

- spdx_abbrev: CC-BY-SA-4.0

- spdx_name: Creative Commons Attribution Share Alike 4.0

- url: http://creativecommons.org/licenses/by-sa/4.0/legalcode

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: CC-BY-SA

- fedora_name: Creative Commons Attribution-ShareAlike

- name: Creative Commons Attribution-ShareAlike

- spdx_abbrev: CC-BY-SA-3.0

- spdx_name: Creative Commons Attribution Share Alike 3.0

- url: http://creativecommons.org/licenses/by-sa/3.0/

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: CC-BY

- fedora_name: Creative Commons Attribution license

- name: Creative Commons Attribution license

- spdx_abbrev: CC-BY-3.0

- spdx_name: Creative Commons Attribution 3.0

- url: http://creativecommons.org/licenses/by/3.0/

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: CC0

- fedora_name: Creative Commons Zero 1.0 Universal

- name: Public Domain, per Creative Commons CC0

- spdx_abbrev: CC0-1.0

- spdx_name: Creative Commons Zero v1.0 Universal

- url: http://creativecommons.org/publicdomain/zero/1.0/legalcode

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: Creative Commons Sampling Plus 1.0

- name: Creative Commons Sampling Plus 1.0

- url: http://creativecommons.org/licenses/sampling+/1.0/legalcode

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Crossword

- fedora_name: Crossword License

- name: Crossword License

- spdx_abbrev: Crossword

- spdx_name: Crossword License

- url: https://fedoraproject.org/wiki/Licensing/Crossword

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Crystal Stacker

- fedora_name: Crystal Stacker License

- name: Crystal Stacker License

- spdx_abbrev: CrystalStacker

- spdx_name: CrystalStacker License

- url: https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Cube

- fedora_name: Cube License

- name: Cube License

- spdx_abbrev: Cube

- spdx_name: Cube License

- url: https://fedoraproject.org/wiki/Licensing/Cube

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: DIP SIPA Font License

- name: DIP SIPA Font License

- url: https://fedoraproject.org/wiki/Licensing/DIP_SIPA_Font_License

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: DMTF

- fedora_name: Distributed Management Task Force License

- name: Distributed Management Task Force License

- url: https://fedoraproject.org/wiki/Licensing/DMTF

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: DOC

- fedora_name: DOC License

- name: DOC License

- spdx_abbrev: DOC

- spdx_name: DOC License

- url: http://www.cs.wustl.edu/~schmidt/ACE-copying.html

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: DSDP

- fedora_name: DSDP License

- name: DSDP License

- spdx_abbrev: DSDP

- spdx_name: DSDP License

- url: https://fedoraproject.org/wiki/Licensing/DSDP

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: DSL

- fedora_name: Design Science License

- name: Design Science License

- url: http://www.fsf.org/licensing/licenses/dsl.html

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: DWPL

- fedora_name: DO WHATEVER PUBLIC LICENSE

- name: DO WHATEVER PUBLIC LICENSE

- url: https://fedoraproject.org/wiki/Licensing/DWPL

@@ -1,5 +0,0 @@ 

- ---

- approved: yes

- fedora_name: Freely redistributable without restriction

- name: Distributable

- url: https://docs.fedoraproject.org/en-US/packaging-guidelines/LicensingGuidelines/#_distributable

@@ -1,4 +0,0 @@ 

- ---

- approved: yes

- name: The Dom4j License

- url: https://raw.githubusercontent.com/dom4j/dom4j/master/LICENSE

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Dotseqn

- fedora_name: Dotseqn License

- name: Dotseqn License

- spdx_abbrev: Dotseqn

- spdx_name: Dotseqn License

- url: https://fedoraproject.org/wiki/Licensing/Dotseqn

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: DoubleStroke

- fedora_name: DoubleStroke Font License

- name: DoubleStroke Font License

- url: https://fedoraproject.org/wiki/Licensing/Fonts/DoubleStroke

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: ECL 1.0

- fedora_name: Educational Community License 1.0

- name: Educational Community License 1.0

- spdx_abbrev: ECL-1.0

- spdx_name: Educational Community License v1.0

- url: http://opensource.org/licenses/ECL-1.0

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: ECL 2.0

- fedora_name: Educational Community License 2.0

- name: Educational Community License 2.0

- spdx_abbrev: ECL-2.0

- spdx_name: Educational Community License v2.0

- url: http://opensource.org/licenses/ECL-2.0

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: OAL

- fedora_name: EFF Open Audio License v1

- name: EFF Open Audio License v1

- url: https://fedoraproject.org/wiki/Licensing/OpenAudioLicense

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: EFML

- fedora_name: Ethymonics Free Music License

- name: Ethymonics Free Music License

- url: https://fedoraproject.org/wiki/Licensing/Ethymonics_Free_Music_License

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: EMC2 License

- name: EMC2 License

- url: http://pauillac.inria.fr/cdrom_a_graver/www/emc2/copyright.htm

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: EPICS

- fedora_name: EPICS Open License

- name: EPICS Open License

- url: http://www.aps.anl.gov/epics/license/open.php

file removed
-7
@@ -1,7 +0,0 @@ 

- ---

- approved: no

- fedora_name: European Union Public License v1.0

- name: European Union Public License v1.0

- spdx_abbrev: EUPL-1.0

- spdx_name: European Union Public License 1.0

- url: http://ec.europa.eu/idabc/en/document/7330.html

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: EUPL 1.1

- fedora_name: European Union Public License 1.1

- name: European Union Public License 1.1

- spdx_abbrev: EUPL-1.1

- spdx_name: European Union Public License 1.1

- url: https://joinup.ec.europa.eu/software/page/eupl/licence-eupl

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: EU Datagrid

- fedora_name: EU Datagrid Software License

- name: EU Datagrid Software License

- spdx_abbrev: EUDatagrid

- spdx_name: EU DataGrid Software License

- url: http://eu-datagrid.web.cern.ch/eu-datagrid/license.html

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: EPL-1.0

- fedora_name: Eclipse Public License 1.0

- name: Eclipse Public License, Version 1.0

- spdx_abbrev: EPL-1.0

- spdx_name: Eclipse Public License 1.0

- url: http://repository.jboss.org/licenses/epl-1.0.txt

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- name: Eclipse Public License - v 2.0

- spdx_abbrev: EPL-2.0

- spdx_name: Eclipse Public License 2.0

- url: http://www.eclipse.org/legal/epl-v20.html

@@ -1,7 +0,0 @@ 

- ---

- approved: no

- fedora_name: Eiffel Forum License 1.0

- name: Eiffel Forum License 1.0

- spdx_abbrev: EFL-1.0

- spdx_name: Eiffel Forum License v1.0

- url: http://www.eiffel-nice.org/license/forum.txt

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: EFL 2.0

- fedora_name: Eiffel Forum License 2.0

- name: Eiffel Forum License 2.0

- spdx_abbrev: EFL-2.0

- spdx_name: Eiffel Forum License v2.0

- url: http://www.eiffel-nice.org/license/eiffel-forum-license-2.html

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Elvish

- fedora_name: Elvish Font License

- name: Elvish Font License

- url: https://fedoraproject.org/wiki/Licensing/Elvish

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Entessa

- fedora_name: Entessa Public License

- name: Entessa Public License v1.0

- spdx_abbrev: Entessa

- spdx_name: Entessa Public License v1.0

- url: http://opensource.org/licenses/Entessa

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: ERPL

- fedora_name: Erlang Public License 1.1

- name: Erlang Public License 1.1

- spdx_abbrev: ErlPL-1.1

- spdx_name: Erlang Public License v1.1

- url: http://www.erlang.org/EPLICENSE

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Eurosym

- fedora_name: Eurosym License

- name: Eurosym License

- spdx_abbrev: Eurosym

- spdx_name: Eurosym License

- url: https://fedoraproject.org/wiki/Licensing/Eurosym

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: FTL

- fedora_name: Freetype License

- name: Freetype Project License

- spdx_abbrev: FTL

- spdx_name: Freetype Project License

- url: http://freetype.fis.uniroma2.it/FTL.TXT

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Fair

- fedora_name: Fair License

- name: Fair License

- spdx_abbrev: Fair

- spdx_name: Fair License

- url: http://www.opensource.org/licenses/Fair

@@ -1,5 +0,0 @@ 

- ---

- approved: yes

- fedora_name: Redistributable, no modification permitted

- name: Firmware

- url: https://docs.fedoraproject.org/en-US/packaging-guidelines/LicensingGuidelines/#_firmware

@@ -1,7 +0,0 @@ 

- ---

- approved: no

- fedora_name: Frameworx License

- name: Frameworx Open License 1.0

- spdx_abbrev: Frameworx-1.0

- spdx_name: Frameworx Open License 1.0

- url: http://www.opensource.org/licenses/Frameworx-1.0

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: FDK-AAC

- fedora_name: Fraunhofer FDK AAC License

- name: Fraunhofer FDK AAC License

- url: https://fedoraproject.org/wiki/Licensing/FDK-AAC

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Free Art

- fedora_name: Free Art License

- name: Free Art License

- url: http://artlibre.org/licence/lalgb.html

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: GL2PS

- fedora_name: GL2PS License

- name: GL2PS License

- spdx_abbrev: GL2PS

- spdx_name: GL2PS License

- url: http://www.geuz.org/gl2ps/COPYING.GL2PS

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- name: GNU Affero General Public License v3.0

- spdx_abbrev: AGPL-3.0

- spdx_name: GNU Affero General Public License v3.0

- url: https://spdx.org/licenses/AGPL-3.0.html

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: AGPLv1

- fedora_name: Affero General Public License 1.0

- name: Affero General Public License v1.0

- spdx_abbrev: AGPL-1.0

- spdx_name: Affero General Public License v1.0

- url: http://www.affero.org/oagpl.html

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: AGPLv3+

- fedora_name: Affero General Public License 3.0 or later

- name: Affero General Public License 3.0 or later

- url: http://www.fsf.org/licensing/licenses/agpl-3.0.html

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: AGPLv3

- fedora_name: Affero General Public License 3.0

- name: Affero General Public License 3.0

- spdx_abbrev: AGPL-3.0

- spdx_name: GNU Affero General Public License v3.0

- url: https://spdx.org/licenses/AGPL-3.0.html

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: AGPLv3 with exceptions

- fedora_name: Affero General Public License 3.0 with Zarafa trademark exceptions

- name: Affero General Public License 3.0 with Zarafa trademark exceptions

- url: http://www.zarafa.com/content/affero-gplv3

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: FSFAP

- fedora_name: FSF All Permissive license

- name: FSF All Permissive license

- spdx_abbrev: FSFAP

- spdx_name: FSF All Permissive License

- url: https://fedoraproject.org/wiki/Licensing/FSFAP

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: FSFUL

- fedora_name: FSF Unlimited License

- name: FSF Unlimited License

- spdx_abbrev: FSFUL

- spdx_name: FSF Unlimited License

- url: https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: FSFULLR

- fedora_name: FSF Unlimited License (with License Retention)

- name: FSF Unlimited License (with License Retention)

- spdx_abbrev: FSFULLR

- spdx_name: FSF Unlimited License (with License Retention)

- url: https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: GNU Free Documentation License v1.1

- spdx_abbrev: GFDL-1.1

- spdx_name: GNU Free Documentation License v1.1

- url: http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: GNU Free Documentation License v1.2

- spdx_abbrev: GFDL-1.2

- spdx_name: GNU Free Documentation License v1.2

- url: http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: GFDL

- fedora_name: GNU Free Documentation License

- name: GNU Free Documentation License

- spdx_abbrev: GFDL-1.3

- spdx_name: GNU Free Documentation License v1.3

- url: http://www.fsf.org/licensing/licenses/fdl.html

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: GPL+

- fedora_name: GNU General Public License v1.0 or later

- name: GNU General Public License v1.0 or later

- spdx_abbrev: GPL-1.0+

- spdx_name: GNU General Public License v1.0 or later

- url: http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: GPL+ or Artistic

- fedora_name: Perl License

- name: Perl License

- url: http://dev.perl.org/licenses/

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: GPL+ with exceptions

- fedora_name: GNU General Public License v2.0 only, with font embedding exception

- name: GNU General Public License v2.0 w/Font exception

- spdx_abbrev: GPL-2.0-with-font-exception

- spdx_name: GNU General Public License v2.0 w/Font exception

- url: http://www.gnu.org/licenses/gpl-faq.html#FontException

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: GNU General Public License v2.0 w/GCC Runtime Library exception

- spdx_abbrev: GPL-2.0-with-GCC-exception

- spdx_name: GNU General Public License v2.0 w/GCC Runtime Library exception

- url: https://spdx.org/licenses/GPL-2.0-with-GCC-exception.html

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: GNU General Public License v2.0 w/Autoconf exception

- spdx_abbrev: GPL-2.0-with-autoconf-exception

- spdx_name: GNU General Public License v2.0 w/Autoconf exception

- url: http://ac-archive.sourceforge.net/doc/copyright.html

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: GNU General Public License v2.0 w/Bison exception

- spdx_abbrev: GPL-2.0-with-bison-exception

- spdx_name: GNU General Public License v2.0 w/Bison exception

- url: https://spdx.org/licenses/GPL-2.0-with-bison-exception.html

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: GNU General Public License v3.0 w/GCC Runtime Library exception

- spdx_abbrev: GPL-3.0-with-GCC-exception

- spdx_name: GNU General Public License v3.0 w/GCC Runtime Library exception

- url: https://spdx.org/licenses/GPL-3.0-with-GCC-exception.html

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: GNU General Public License v3.0 w/Autoconf exception

- spdx_abbrev: GPL-3.0-with-autoconf-exception

- spdx_name: GNU General Public License v3.0 w/Autoconf exception

- url: https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.html

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: GPL for Computer Programs of the Public Administration

- name: GPL for Computer Programs of the Public Administration

- url: http://www.celepar.pr.gov.br/modules/conteudo/conteudo.php?conteudo=69

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: GPLv1

- fedora_name: GNU General Public License v1.0 only

- name: GNU General Public License v1.0 only

- spdx_abbrev: GPL-1.0

- spdx_name: GNU General Public License v1.0 only

- url: http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: GPLv2+

- fedora_name: GNU General Public License v2.0 or later

- name: GNU General Public License v2.0 or later

- spdx_abbrev: GPL-2.0+

- spdx_name: GNU General Public License v2.0 or later

- url: https://spdx.org/licenses/GPL-2.0+.html

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: GPLv2+ with exceptions

- fedora_name: GNU General Public License v2.0 or later, with font embedding exception

- name: GNU General Public License v2.0 or later, with font embedding exception

- url: http://www.gnu.org/licenses/gpl-faq.html#FontException

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: GPLv2

- fedora_name: GNU General Public License v2.0 only

- name: GNU General Public License v2.0 only

- spdx_abbrev: GPL-2.0

- spdx_name: GNU General Public License v2.0 only

- url: http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: GPLv2 with exceptions

- fedora_name: MySQL License

- name: MySQL License

- url: http://www.mysql.com/company/legal/licensing/foss-exception.html

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: GPLv3+

- fedora_name: GNU General Public License v3.0 or later

- name: GNU General Public License v3.0 or later

- spdx_abbrev: GPL-3.0+

- spdx_name: GNU General Public License v3.0 or later

- url: https://www.gnu.org/licenses/gpl.html

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: GPLv3+ with exceptions

- fedora_name: GNU General Public License v3.0 or later, with font embedding exception

- name: GNU General Public License v3.0 or later, with font embedding exception

- url: http://www.gnu.org/licenses/gpl-faq.html#FontException

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: GPLv3

- fedora_name: GNU General Public License v3.0 only

- name: GNU General Public License v3.0 only

- spdx_abbrev: GPL-3.0

- spdx_name: GNU General Public License v3.0 only

- url: http://www.gnu.org/licenses/gpl-3.0-standalone.html

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: GPLv3 with exceptions

- fedora_name: GNU General Public License v3.0 only, with font embedding exception

- name: GNU General Public License v3.0 only, with font embedding exception

- url: http://www.gnu.org/licenses/gpl-faq.html#FontException

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: GNU Library General Public License v2 or later

- spdx_abbrev: LGPL-2.0+

- spdx_name: GNU Library General Public License v2 or later

- url: https://spdx.org/licenses/LGPL-2.0+.html

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- name: GNU Library General Public License, Version 2

- spdx_abbrev: LGPL-2.0

- spdx_name: GNU Library General Public License v2 only

- url: http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- name: GNU Lesser General Public License v2.1 or later

- spdx_abbrev: LGPL-2.1+

- spdx_name: GNU Lesser General Public License v2.1 or later

- url: http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- name: LGPL 2.1

- spdx_abbrev: LGPL-2.1

- spdx_name: GNU Lesser General Public License v2.1 only

- url: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Lesser General Public License For Linguistic Resources

- spdx_abbrev: LGPLLR

- spdx_name: Lesser General Public License For Linguistic Resources

- url: http://www-igm.univ-mlv.fr/~unitex/lgpllr.html

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: LGPLv2+

- fedora_name: GNU Lesser General Public License v2 (or 2.1) or later

- name: GNU Lesser General Public License v2 (or 2.1) or later

- url: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html

@@ -1,5 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: LGPLv2+ or Artistic

- fedora_name: Perl License (variant)

- name: Perl License (variant)

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: LGPLv2+ with exceptions

- fedora_name: Qwt License 1.0

- name: Qwt License 1.0

- url: http://qwt.sourceforge.net/qwtlicense.html

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: LGPLv2

- fedora_name: GNU Lesser General Public License v2 (or 2.1) only

- name: GNU Lesser General Public License v2 (or 2.1) only

- url: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html

@@ -1,5 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: LGPLv2 with exceptions

- fedora_name: GNU Lesser General Public License v2 (or 2.1), with exceptions

- name: GNU Lesser General Public License v2 (or 2.1), with exceptions

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: LGPLv3+

- fedora_name: GNU Lesser General Public License v3.0 or later

- name: GNU Lesser General Public License v3.0 or later

- spdx_abbrev: LGPL-3.0+

- spdx_name: GNU Lesser General Public License v3.0 or later

- url: https://spdx.org/licenses/LGPL-3.0+.html

@@ -1,5 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: LGPLv3+ with exceptions

- fedora_name: GNU Lesser General Public License v3.0 or later, with exceptions

- name: GNU Lesser General Public License v3.0 or later, with exceptions

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: LGPLv3

- fedora_name: GNU Lesser General Public License v3.0 only

- name: GNU Lesser General Public License, Version 3

- spdx_abbrev: LGPL-3.0

- spdx_name: GNU Lesser General Public License v3.0 only

- url: http://www.gnu.org/licenses/lgpl-3.0-standalone.html

@@ -1,5 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: LGPLv3 with exceptions

- fedora_name: GNU Lesser General Public License v3.0 only, with exceptions

- name: GNU Lesser General Public License v3.0 only, with exceptions

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: OFSFDL

- fedora_name: Old FSF Documentation License

- name: Old FSF Documentation License

- url: https://fedoraproject.org/wiki/Licensing/OldFSFDocLicense

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: GeoGratis

- fedora_name: GeoGratis Licence Agreement

- name: GeoGratis Licence Agreement

- url: http://geogratis.cgdi.gc.ca/geogratis/en/licence.jsp

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Deutsche Freie Software Lizenz

- spdx_abbrev: D-FSL-1.0

- spdx_name: Deutsche Freie Software Lizenz

- url: http://www.dipp.nrw.de/d-fsl/lizenzen/

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: DL-DE-BY

- fedora_name: Data license Germany - attribution 2.0

- name: Data license Germany - attribution 2.0

- url: https://www.govdata.de/dl-de/by-2-0

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Giftware

- fedora_name: Giftware License

- name: Giftware License

- spdx_abbrev: Giftware

- spdx_name: Giftware License

- url: http://alleg.sourceforge.net//license.html

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Glide

- fedora_name: 3dfx Glide License

- name: 3dfx Glide License

- spdx_abbrev: Glide

- spdx_name: 3dfx Glide License

- url: http://www.users.on.net/~triforce/glidexp/COPYING.txt

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Glulxe

- fedora_name: Glulxe License

- name: Glulxe License

- spdx_abbrev: Glulxe

- spdx_name: Glulxe License

- url: https://fedoraproject.org/wiki/Licensing/Glulxe

@@ -1,4 +0,0 @@ 

- ---

- approved: yes

- name: H2 License, Version 1.0

- url: http://repository.jboss.org/licenses/h2.txt

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: HOFL

- fedora_name: Hack Open Font License

- name: Hack Open Font License

- url: https://fedoraproject.org/wiki/Licensing/HackOpenFontLicense

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: HP Software License Terms

- name: HP Software License Terms

- url: http://h30097.www3.hp.com/hp_sw_license.html

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: HSRL

- fedora_name: Henry Spencer Reg-Ex Library License

- name: Spencer License 94

- spdx_abbrev: Spencer-94

- spdx_name: Spencer License 94

- url: https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: Hacktivismo Enhanced-Source Software License Agreement

- name: Hacktivismo Enhanced-Source Software License Agreement

- url: http://www.hacktivismo.com/about/hessla.php

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: HaskellReport

- fedora_name: Haskell Language Report License

- name: Haskell Language Report License

- spdx_abbrev: HaskellReport

- spdx_name: Haskell Language Report License

- url: https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: Helix DNA Technology Binary Research Use License

- name: Helix DNA Technology Binary Research Use License

- url: https://helixcommunity.org/beula/

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Hershey

- fedora_name: Hershey Font License

- name: Hershey Font License

- url: https://fedoraproject.org/wiki/Licensing/HersheyFontLicense

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: IBM PowerPC Initialization and Boot Software

- spdx_abbrev: IBM-pibs

- spdx_name: IBM PowerPC Initialization and Boot Software

- url: http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: IBM

- fedora_name: IBM Public License

- name: IBM Public License v1.0

- spdx_abbrev: IPL-1.0

- spdx_name: IBM Public License v1.0

- url: http://www.opensource.org/licenses/IPL-1.0

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: IBM Sample Code License

- name: IBM Sample Code License

- url: https://fedoraproject.org/wiki/Licensing/IBM_Sample_Code_License

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: ICU License - ICU 1.8.1 to ICU 57.1

- spdx_abbrev: ICU

- spdx_name: ICU License

- url: http://source.icu-project.org/repos/icu/tags/release-57-1/icu4j/main/shared/licenses/LICENSE

@@ -1,4 +0,0 @@ 

- ---

- approved: unknown

- name: ICU License (ICU 58 and later)

- url: http://source.icu-project.org/repos/icu/trunk/icu4j/main/shared/licenses/LICENSE

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: IEEE

- fedora_name: IEEE and Open Group Documentation License

- name: IEEE and Open Group Documentation License

- url: https://fedoraproject.org/wiki/Licensing/IEEEDocLicense

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: IJG

- fedora_name: Independent JPEG Group License

- name: Independent JPEG Group License

- spdx_abbrev: IJG

- spdx_name: Independent JPEG Group License

- url: http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: IPA

- fedora_name: IPA Font License

- name: IPA Font License

- spdx_abbrev: IPA

- spdx_name: IPA Font License

- url: https://fedoraproject.org/wiki/Licensing/IPAFontLicense

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: ISC

- fedora_name: ISC License (Bind, DHCP Server)

- name: ISC License (Bind, DHCP Server)

- spdx_abbrev: ISC

- spdx_name: ISC License

- url: http://www.isc.org/downloads/software-support-policy/isc-license/

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: ImageMagick

- fedora_name: ImageMagick License

- name: ImageMagick License

- spdx_abbrev: ImageMagick

- spdx_name: ImageMagick License

- url: http://www.imagemagick.org/script/license.php

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Imlib2

- fedora_name: Imlib2 License

- name: Imlib2 License

- spdx_abbrev: Imlib2

- spdx_name: Imlib2 License

- url: http://trac.enlightenment.org/e/browser/trunk/imlib2/COPYING

@@ -1,4 +0,0 @@ 

- ---

- approved: yes

- name: Indiana University Extreme! Lab Software License 1.1.1

- url: https://enterprise.dejacode.com/licenses/public/indiana-extreme/?_list_filters=q%3Dindiana%2Bextreme#license-text

@@ -1,4 +0,0 @@ 

- ---

- approved: yes

- name: Indiana University Extreme! Lab Software License Version 1.1.1

- url: https://enterprise.dejacode.com/licenses/public/indiana-extreme/?_list_filters=q%3Dindiana%2Bextreme#license-text

@@ -1,4 +0,0 @@ 

- ---

- approved: yes

- name: indiana-extreme

- url: https://enterprise.dejacode.com/licenses/public/indiana-extreme/?_list_filters=q%3Dindiana%2Bextreme#license-text

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Info-ZIP License

- spdx_abbrev: Info-ZIP

- spdx_name: Info-ZIP License

- url: http://www.info-zip.org/license.html

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Inner-Net

- fedora_name: Inner Net License

- name: Inner Net License

- url: https://fedoraproject.org/wiki/Licensing/Inner_Net_License

file removed
-7
@@ -1,7 +0,0 @@ 

- ---

- approved: no

- fedora_name: Intel Open Source License

- name: Intel Open Source License

- spdx_abbrev: Intel

- spdx_name: Intel Open Source License

- url: http://opensource.org/licenses/Intel

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Intel ACPI

- fedora_name: Intel ACPI Software License Agreement

- name: Intel ACPI Software License Agreement

- spdx_abbrev: Intel-ACPI

- spdx_name: Intel ACPI Software License Agreement

- url: https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: Intel IPW3945 Daemon License

- name: Intel IPW3945 Daemon License

- url: https://fedoraproject.org/wiki/Licensing/Intel_IPW3945_Daemon_License

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Interbase

- fedora_name: Interbase Public License

- name: Interbase Public License v1.0

- spdx_abbrev: Interbase-1.0

- spdx_name: Interbase Public License v1.0

- url: https://web.archive.org/web/20060319014854/http://info.borland.com/devsupport/interbase/opensource/IPL.html

@@ -1,4 +0,0 @@ 

- ---

- approved: yes

- name: JDOM License

- url: http://repository.jboss.org/licenses/jdom-1.0.txt

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: JPython

- fedora_name: JPython License (old)

- name: JPython License (old)

- url: http://www.jython.org/license.html

file removed
-7
@@ -1,7 +0,0 @@ 

- ---

- approved: no

- fedora_name: JSON License

- name: JSON License

- spdx_abbrev: JSON

- spdx_name: JSON License

- url: http://www.json.org/license.html

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Jabber

- fedora_name: Jabber Open Source License

- name: Jabber Open Source License

- url: http://opensource.org/licenses/jabberpl.php

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: Jahia Community Source License

- name: Jahia Community Source License

- url: http://www.jahia.org/jahia/Jahia/pid/145

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: JasPer

- fedora_name: JasPer License

- name: JasPer License

- spdx_abbrev: JasPer-2.0

- spdx_name: JasPer License

- url: http://www.ece.uvic.ca/~mdadams/jasper/LICENSE

@@ -1,4 +0,0 @@ 

- ---

- approved: yes

- name: The Jaxen License

- url: http://www.jaxen.org/license.html

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Julius

- fedora_name: Julius License

- name: Julius License

- url: https://fedoraproject.org/wiki/Licensing/Julius

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Knuth

- fedora_name: Knuth License

- name: Knuth License

- url: http://tug.org/TUGboat/Articles/tb11-4/tb30knut.pdf

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Licence Art Libre 1.2

- spdx_abbrev: LAL-1.2

- spdx_name: Licence Art Libre 1.2

- url: http://artlibre.org/licence/lal/licence-art-libre-12/

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Licence Art Libre 1.3

- spdx_abbrev: LAL-1.3

- spdx_name: Licence Art Libre 1.3

- url: http://artlibre.org/

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: LDPL

- fedora_name: Linux Documentation Project License

- name: Linux Documentation Project License

- url: http://tldp.org/COPYRIGHT.html

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: LOSLA

- fedora_name: LEGO Open Source License Agreement

- name: LEGO Open Source License Agreement

- url: https://fedoraproject.org/wiki/Licensing/LOSLA

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: LLGPL

- fedora_name: Lisp Library General Public License

- name: Lisp Library General Public License

- url: http://opensource.franz.com/preamble.html

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: LaTeX Project Public License v1.0

- spdx_abbrev: LPPL-1.0

- spdx_name: LaTeX Project Public License v1.0

- url: http://www.latex-project.org/lppl/lppl-1-0.txt

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: LaTeX Project Public License v1.1

- spdx_abbrev: LPPL-1.1

- spdx_name: LaTeX Project Public License v1.1

- url: http://www.latex-project.org/lppl/lppl-1-1.txt

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: LaTeX Project Public License v1.2

- spdx_abbrev: LPPL-1.2

- spdx_name: LaTeX Project Public License v1.2

- url: http://www.latex-project.org/lppl/lppl-1-2.txt

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: LaTeX Project Public License v1.3c

- spdx_abbrev: LPPL-1.3c

- spdx_name: LaTeX Project Public License v1.3c

- url: http://www.latex-project.org/lppl/lppl-1-3c.txt

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: LPPL

- fedora_name: GUST Font License

- name: GUST Font License

- url: http://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: Larabie Fonts License

- name: Larabie Fonts License

- url: https://fedoraproject.org/wiki/Licensing/LarabieFontsLicense

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Latex2e

- fedora_name: Latex2e License

- name: Latex2e License

- spdx_abbrev: Latex2e

- spdx_name: Latex2e License

- url: https://fedoraproject.org/wiki/Licensing/Latex2e

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Leptonica

- fedora_name: Leptonica License

- name: Leptonica License

- spdx_abbrev: Leptonica

- spdx_name: Leptonica License

- url: https://fedoraproject.org/wiki/Licensing/Leptonica

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Lhcyr

- fedora_name: Lhcyr License

- name: Lhcyr License

- url: https://fedoraproject.org/wiki/Licensing/Lhcyr

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: "Licence Libre du Qu\xE9bec \u2013 Permissive version 1.1"

- spdx_abbrev: LiLiQ-P-1.1

- spdx_name: "Licence Libre du Qu\xE9bec \u2013 Permissive version 1.1"

- url: http://opensource.org/licenses/LiLiQ-P-1.1

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: "Licence Libre du Qu\xE9bec \u2013 R\xE9ciprocit\xE9 version 1.1"

- spdx_abbrev: LiLiQ-R-1.1

- spdx_name: "Licence Libre du Qu\xE9bec \u2013 R\xE9ciprocit\xE9 version 1.1"

- url: http://opensource.org/licenses/LiLiQ-R-1.1

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: "Licence Libre du Qu\xE9bec \u2013 R\xE9ciprocit\xE9 forte version 1.1"

- spdx_abbrev: LiLiQ-Rplus-1.1

- spdx_name: "Licence Libre du Qu\xE9bec \u2013 R\xE9ciprocit\xE9 forte version 1.1"

- url: http://opensource.org/licenses/LiLiQ-Rplus-1.1

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Liberation

- fedora_name: Liberation Font License

- name: Liberation Font License

- url: https://fedoraproject.org/wiki/Licensing/LiberationFontLicense

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Green OpenMusic

- fedora_name: LinuxTag Green OpenMusic License

- name: LinuxTag Green OpenMusic License

- url: http://openmusic.linuxtag.org/green.html

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: LinuxTag Yellow OpenMusic License

- name: LinuxTag Yellow OpenMusic License

- url: http://openmusic.linuxtag.org/yellow.html

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: Literat Font License

- name: Literat Font License

- url: https://fedoraproject.org/wiki/Licensing/LiteratFontLicense

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Logica

- fedora_name: Logica Open Source License

- name: Logica Open Source License

- url: http://opensmpp.logica.com/CommonPart/Download/Download.htm

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Lucent Public License Version 1.0

- spdx_abbrev: LPL-1.0

- spdx_name: Lucent Public License Version 1.0

- url: http://opensource.org/licenses/LPL-1.0

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: LPL

- fedora_name: Lucent Public License (Plan9)

- name: Lucent Public License v1.02

- spdx_abbrev: LPL-1.02

- spdx_name: Lucent Public License v1.02

- url: http://plan9.bell-labs.com/plan9dist/license.html

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Lucida

- fedora_name: Lucida Legal Notice

- name: Lucida Legal Notice

- url: https://fedoraproject.org/wiki/Licensing/Lucida

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: MAME License

- name: MAME License

- url: http://mamedev.org/legal.html

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: DMIT

- fedora_name: Docbook MIT License

- name: Docbook MIT License

- url: https://fedoraproject.org/wiki/Licensing/DMIT

file removed
-2
@@ -1,2 +0,0 @@ 

- ---

- approved: yes

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- name: The MIT License

- spdx_abbrev: MIT

- spdx_name: MIT License

- url: http://www.opensource.org/licenses/MIT

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: MITNFA

- fedora_name: MIT +no-false-attribs license

- name: MIT +no-false-attribs license

- spdx_abbrev: MITNFA

- spdx_name: MIT +no-false-attribs license

- url: https://fedoraproject.org/wiki/Licensing/MITNFA

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: MIT with advertising

- fedora_name: Nunit License

- name: Nunit License

- spdx_abbrev: Nunit

- spdx_name: Nunit License

- url: https://fedoraproject.org/wiki/Licensing/Nunit

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Multics License

- spdx_abbrev: Multics

- spdx_name: Multics License

- url: http://www.opensource.org/licenses/Multics

@@ -1,4 +0,0 @@ 

- ---

- approved: yes

- name: The JSoup MIT License

- url: https://jsoup.org/license.html

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: MITRE Collaborative Virtual Workspace License (CVW)

- name: MITRE Collaborative Virtual Workspace License (CVW)

- url: http://opensource.org/licenses/mitrepl.php

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: MSNTP License

- name: MSNTP License

- url: https://fedoraproject.org/wiki/Licensing:MSNTP?rd=Licensing/MSNTP

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: MTLL

- fedora_name: Matrix Template Library License

- name: Matrix Template Library License

- spdx_abbrev: MTLL

- spdx_name: Matrix Template Library License

- url: https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License

@@ -1,4 +0,0 @@ 

- ---

- approved: no

- fedora_name: AT&T Public License

- name: AT&T Public License

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: Maia Mailguard License

- name: Maia Mailguard License

- url: http://www.maiamailguard.org/license.php

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: MakeIndex

- fedora_name: MakeIndex License

- name: MakeIndex License

- spdx_abbrev: MakeIndex

- spdx_name: MakeIndex License

- url: https://fedoraproject.org/wiki/Licensing/MakeIndex

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: MeepZor Consulting Public Licence

- name: MeepZor Consulting Public Licence

- url: http://meepzor.com/packages/autoresponder/LICENCE.txt

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: Metasploit Framework License (pre 2006)

- name: Metasploit Framework License (pre 2006)

- url: https://fedoraproject.org/wiki/Licensing/Metasploit_Framework_License

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: MgOpen

- fedora_name: MgOpen Font License

- name: MgOpen Font License

- url: https://fedoraproject.org/wiki/Licensing/Fonts/MgOpen

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: MS-PL

- fedora_name: Microsoft Public License

- name: Microsoft Public License

- spdx_abbrev: MS-PL

- spdx_name: Microsoft Public License

- url: http://www.microsoft.com/opensource/licenses.mspx

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: MS-RL

- fedora_name: Microsoft Reciprocal License

- name: Microsoft Reciprocal License

- spdx_abbrev: MS-RL

- spdx_name: Microsoft Reciprocal License

- url: http://www.microsoft.com/opensource/licenses.mspx

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: Microsofts Shared Source CLI/C#/Jscript License

- name: Microsoft's Shared Source CLI/C#/Jscript License

- url: https://fedoraproject.org/wiki/Licensing/Microsoft_Shared_Source_License

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: MirOS

- fedora_name: MirOS License

- name: MirOS License

- spdx_abbrev: MirOS

- spdx_name: MirOS Licence

- url: http://www.opensource.org/licenses/MirOS

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Motosoto

- fedora_name: Motosoto License

- name: Motosoto License

- spdx_abbrev: Motosoto

- spdx_name: Motosoto License

- url: http://www.opensource.org/licenses/Motosoto

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Mozilla Public License 2.0 (no copyleft exception)

- spdx_abbrev: MPL-2.0-no-copyleft-exception

- spdx_name: Mozilla Public License 2.0 (no copyleft exception)

- url: http://www.mozilla.org/MPL/2.0/

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: MPLv1.0

- fedora_name: Mozilla Public License v1.0

- name: Mozilla Public License v1.0

- spdx_abbrev: MPL-1.0

- spdx_name: Mozilla Public License 1.0

- url: http://www.mozilla.org/MPL/MPL-1.0.html

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: MPLv1.1

- fedora_name: Mozilla Public License v1.1

- name: Mozilla Public License, Version 1.1

- spdx_abbrev: MPL-1.1

- spdx_name: Mozilla Public License 1.1

- url: http://www.mozilla.org/MPL/MPL-1.1.html

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: MPLv2.0

- fedora_name: Mozilla Public License v2.0

- name: Mozilla Public License v2.0

- spdx_abbrev: MPL-2.0

- spdx_name: Mozilla Public License 2.0

- url: http://www.mozilla.org/MPL/2.0/

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Netscape Public License v1.1

- spdx_abbrev: NPL-1.1

- spdx_name: Netscape Public License v1.1

- url: http://www.mozilla.org/MPL/NPL/1.1/

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Netscape

- fedora_name: Netscape Public License

- name: Netscape Public License v1.0

- spdx_abbrev: NPL-1.0

- spdx_name: Netscape Public License v1.0

- url: http://www.mozilla.org/MPL/NPL/1.0/

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Mup

- fedora_name: Mup License

- name: Mup License

- spdx_abbrev: Mup

- spdx_name: Mup License

- url: https://fedoraproject.org/wiki/Licensing/Mup

@@ -1,7 +0,0 @@ 

- ---

- approved: no

- fedora_name: NASA Open Source Agreement v1.3

- name: NASA Open Source Agreement v1.3

- spdx_abbrev: NASA-1.3

- spdx_name: NASA Open Source Agreement 1.3

- url: http://ti.arc.nasa.gov/opensource/nosa/

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: NASA CDF License

- name: NASA CDF License

- url: https://fedoraproject.org/wiki/Licensing/NasaCDF

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: NCSA

- fedora_name: NCSA/University of Illinois Open Source License

- name: University of Illinois/NCSA Open Source License

- spdx_abbrev: NCSA

- spdx_name: University of Illinois/NCSA Open Source License

- url: http://otm.illinois.edu/uiuc_openSource

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: NISTSL

- fedora_name: NIST Software License

- name: NIST Software License

- url: https://fedoraproject.org/wiki/Licensing/NISTSL

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: NLPL

- fedora_name: No Limit Public License

- name: No Limit Public License

- spdx_abbrev: NLPL

- spdx_name: No Limit Public License

- url: https://fedoraproject.org/wiki/Licensing/NLPL

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: NTP License

- spdx_abbrev: NTP

- spdx_name: NTP License

- url: http://www.opensource.org/licenses/NTP

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Naumen

- fedora_name: Naumen Public License

- name: Naumen Public License

- spdx_abbrev: Naumen

- spdx_name: Naumen Public License

- url: http://www.opensource.org/licenses/Naumen

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Net-SNMP License

- spdx_abbrev: Net-SNMP

- spdx_name: Net-SNMP License

- url: http://net-snmp.sourceforge.net/about/license.html

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: NetCDF

- fedora_name: NetCDF license

- name: NetCDF license

- spdx_abbrev: NetCDF

- spdx_name: NetCDF license

- url: http://www.unidata.ucar.edu/software/netcdf/copyright.html

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Net Boolean Public License v1

- spdx_abbrev: NBPL-1.0

- spdx_name: Net Boolean Public License v1

- url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=37b4b3f6cc4bf34e1d3dec61e69914b9819d8894

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: NGPL

- fedora_name: Nethack General Public License

- name: Nethack General Public License

- spdx_abbrev: NGPL

- spdx_name: Nethack General Public License

- url: http://www.opensource.org/licenses/NGPL

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: NOSL

- fedora_name: Netizen Open Source License

- name: Netizen Open Source License

- spdx_abbrev: NOSL

- spdx_name: Netizen Open Source License

- url: http://bits.netizen.com.au/licenses/NOSL/nosl.txt

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Newmat

- fedora_name: Newmat License

- name: Newmat License

- url: https://fedoraproject.org/wiki/Licensing/Newmat_License

@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Newsletr

- fedora_name: Newsletr License

- name: Newsletr License

- spdx_abbrev: Newsletr

- spdx_name: Newsletr License

- url: https://fedoraproject.org/wiki/Licensing/Newsletr

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Nmap

- fedora_name: Nmap License

- name: Nmap License

- url: https://fedoraproject.org/wiki/Licensing/Nmap

file removed
-2
@@ -1,2 +0,0 @@ 

- ---

- approved: no

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Nokia

- fedora_name: Nokia Open Source License

- name: Nokia Open Source License

- spdx_abbrev: Nokia

- spdx_name: Nokia Open Source License

- url: http://www.opensource.org/licenses/nokia

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Non-Profit Open Software License 3.0

- spdx_abbrev: NPOSL-3.0

- spdx_name: Non-Profit Open Software License 3.0

- url: http://www.opensource.org/licenses/NOSL3.0

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Norwegian Licence for Open Government Data

- spdx_abbrev: NLOD-1.0

- spdx_name: Norwegian Licence for Open Government Data

- url: http://data.norge.no/nlod/en/1.0

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Noweb

- fedora_name: Noweb License

- name: Noweb License

- spdx_abbrev: Noweb

- spdx_name: Noweb License

- url: https://fedoraproject.org/wiki/Licensing/Noweb

@@ -1,7 +0,0 @@ 

- ---

- approved: no

- fedora_name: OCLC Public Research License 2.0

- name: OCLC Research Public License 2.0

- spdx_abbrev: OCLC-2.0

- spdx_name: OCLC Research Public License 2.0

- url: http://www.oclc.org/research/activities/software/license/v2final.htm

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: ODC Open Database License v1.0

- spdx_abbrev: ODbL-1.0

- spdx_name: ODC Open Database License v1.0

- url: http://www.opendatacommons.org/licenses/odbl/1.0/

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: ODC Public Domain Dedication & License 1.0

- spdx_abbrev: PDDL-1.0

- spdx_name: ODC Public Domain Dedication & License 1.0

- url: http://opendatacommons.org/licenses/pddl/1.0/

file removed
-6
@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: SIL Open Font License 1.0

- spdx_abbrev: OFL-1.0

- spdx_name: SIL Open Font License 1.0

- url: http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: OFL

- fedora_name: SIL Open Font License 1.1

- name: SIL Open Font License 1.1

- spdx_abbrev: OFL-1.1

- spdx_name: SIL Open Font License 1.1

- url: http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: OML

- fedora_name: Open Market License

- name: Open Market License

- spdx_abbrev: OML

- spdx_name: Open Market License

- url: https://fedoraproject.org/wiki/Licensing/Open_Market_License

file removed
-7
@@ -1,7 +0,0 @@ 

- ---

- approved: no

- fedora_name: Open Public License

- name: Open Public License v1.0

- spdx_abbrev: OPL-1.0

- spdx_name: Open Public License v1.0

- url: https://fedoraproject.org/wiki/Licensing/Open_Public_License

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: OReilly

- fedora_name: OReilly License

- name: OReilly License

- url: https://fedoraproject.org/wiki/Licensing:OReilly?rd=Licensing/OReilly

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: OSET Public License version 2.1

- spdx_abbrev: OSET-PL-2.1

- spdx_name: OSET Public License version 2.1

- url: http://opensource.org/licenses/OPL-2.1

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: OSGi Specification License

- name: OSGi Specification License

- url: http://www.osgi.org/Main/OSGiSpecificationLicense

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: OSL 1.0

- fedora_name: Open Software License 1.0

- name: Open Software License 1.0

- spdx_abbrev: OSL-1.0

- spdx_name: Open Software License 1.0

- url: http://opensource.org/licenses/OSL-1.0

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: OSL 1.1

- fedora_name: Open Software License 1.1

- name: Open Software License 1.1

- spdx_abbrev: OSL-1.1

- spdx_name: Open Software License 1.1

- url: https://fedoraproject.org/wiki/Licensing/OSL1.1

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: OSL 2.0

- fedora_name: Open Software License 2.0

- name: Open Software License 2.0

- spdx_abbrev: OSL-2.0

- spdx_name: Open Software License 2.0

- url: http://web.archive.org/web/20041020171434/http://www.rosenlaw.com/osl2.0.html

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: OSL 2.1

- fedora_name: Open Software License 2.1

- name: Open Software License 2.1

- spdx_abbrev: OSL-2.1

- spdx_name: Open Software License 2.1

- url: http://opensource.org/licenses/OSL-2.1

file removed
-8
@@ -1,8 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: OSL 3.0

- fedora_name: Open Software License 3.0

- name: Open Software License 3.0

- spdx_abbrev: OSL-3.0

- spdx_name: Open Software License 3.0

- url: http://www.rosenlaw.com/OSL3.0.htm

@@ -1,5 +0,0 @@ 

- ---

- approved: no

- fedora_name: Open Content License

- name: Open Content License

- url: http://opencontent.org/opl.shtml

@@ -1,6 +0,0 @@ 

- ---

- approved: yes

- fedora_abbrev: Open Publication

- fedora_name: Open Publication License, v1.0

- name: Open Publication License, v1.0

- url: http://opencontent.org/openpub/

@@ -1,7 +0,0 @@ 

- ---

- approved: no

- fedora_name: Open Group Test Suite License

- name: Open Group Test Suite License

- spdx_abbrev: OGTSL

- spdx_name: Open Group Test Suite License

- url: http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Open LDAP Public License v1.1

- spdx_abbrev: OLDAP-1.1

- spdx_name: Open LDAP Public License v1.1

- url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=806557a5ad59804ef3a44d5abfbe91d706b0791f

@@ -1,6 +0,0 @@ 

- ---

- approved: unknown

- name: Open LDAP Public License v1.2

- spdx_abbrev: OLDAP-1.2

- spdx_name: Open LDAP Public License v1.2

- url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=42b0383c50c299977b5893ee695cf4e486fb0dc7