From 33eaa019ec56ff41a2e2eef02851a6ea25c546d1 Mon Sep 17 00:00:00 2001 From: David Cantrell Date: Nov 23 2021 00:44:24 +0000 Subject: Initial conversion of Fedora good licenses to TOML format --- diff --git a/README b/README new file mode 100644 index 0000000..4f48d7c --- /dev/null +++ b/README @@ -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 diff --git a/TEMPLATE.toml b/TEMPLATE.toml new file mode 100644 index 0000000..3cbbe8c --- /dev/null +++ b/TEMPLATE.toml @@ -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 = ''' +#''' diff --git a/TEMPLATE.yaml b/TEMPLATE.yaml deleted file mode 100644 index dcdb1a2..0000000 --- a/TEMPLATE.yaml +++ /dev/null @@ -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 diff --git a/approved/0BSD.toml b/approved/0BSD.toml new file mode 100644 index 0000000..7001123 --- /dev/null +++ b/approved/0BSD.toml @@ -0,0 +1,13 @@ +[license] + +expression = "0BSD" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/ZeroClauseBSD +''' + +[fedora] + +name = "Zero-Clause BSD" +abbreviation = "0BSD" diff --git a/approved/AAL.toml b/approved/AAL.toml new file mode 100644 index 0000000..ffc204f --- /dev/null +++ b/approved/AAL.toml @@ -0,0 +1,13 @@ +[license] + +expression = "AAL" +status = "approved" + +text = ''' +http://opensource.org/licenses/attribution.php +''' + +[fedora] + +name = "Attribution Assurance License" +abbreviation = "AAL" diff --git a/approved/ADSL.toml b/approved/ADSL.toml new file mode 100644 index 0000000..8efd90c --- /dev/null +++ b/approved/ADSL.toml @@ -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 +''' diff --git a/approved/AFL-3.0.toml b/approved/AFL-3.0.toml new file mode 100644 index 0000000..a8718d8 --- /dev/null +++ b/approved/AFL-3.0.toml @@ -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 +''' diff --git a/approved/AGPL-1.0-only.toml b/approved/AGPL-1.0-only.toml new file mode 100644 index 0000000..64e2cad --- /dev/null +++ b/approved/AGPL-1.0-only.toml @@ -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" diff --git a/approved/AGPL-3.0-only.toml b/approved/AGPL-3.0-only.toml new file mode 100644 index 0000000..3903acd --- /dev/null +++ b/approved/AGPL-3.0-only.toml @@ -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" diff --git a/approved/AGPL-3.0-or-later.toml b/approved/AGPL-3.0-or-later.toml new file mode 100644 index 0000000..baf21c6 --- /dev/null +++ b/approved/AGPL-3.0-or-later.toml @@ -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+" diff --git a/approved/AMDPLPA.toml b/approved/AMDPLPA.toml new file mode 100644 index 0000000..22c28a1 --- /dev/null +++ b/approved/AMDPLPA.toml @@ -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? +''' diff --git a/approved/AML.toml b/approved/AML.toml new file mode 100644 index 0000000..30464d3 --- /dev/null +++ b/approved/AML.toml @@ -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. +''' diff --git a/approved/AMPAS.toml b/approved/AMPAS.toml new file mode 100644 index 0000000..553db78 --- /dev/null +++ b/approved/AMPAS.toml @@ -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. +''' diff --git a/approved/ANTLR-PD.toml b/approved/ANTLR-PD.toml new file mode 100644 index 0000000..9def081 --- /dev/null +++ b/approved/ANTLR-PD.toml @@ -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" diff --git a/approved/APAFML.toml b/approved/APAFML.toml new file mode 100644 index 0000000..0f8c663 --- /dev/null +++ b/approved/APAFML.toml @@ -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 +''' diff --git a/approved/APSL-2.0.toml b/approved/APSL-2.0.toml new file mode 100644 index 0000000..8f51f0a --- /dev/null +++ b/approved/APSL-2.0.toml @@ -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" diff --git a/approved/ARL.toml b/approved/ARL.toml new file mode 100644 index 0000000..2e3e283 --- /dev/null +++ b/approved/ARL.toml @@ -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 +''' diff --git a/approved/Abstyles.toml b/approved/Abstyles.toml new file mode 100644 index 0000000..5d82556 --- /dev/null +++ b/approved/Abstyles.toml @@ -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. +''' diff --git a/approved/Adobe-2006.toml b/approved/Adobe-2006.toml new file mode 100644 index 0000000..7f67006 --- /dev/null +++ b/approved/Adobe-2006.toml @@ -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. +''' diff --git a/approved/Adobe-Glyph.toml b/approved/Adobe-Glyph.toml new file mode 100644 index 0000000..f823830 --- /dev/null +++ b/approved/Adobe-Glyph.toml @@ -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 +''' diff --git a/approved/Afmparse.toml b/approved/Afmparse.toml new file mode 100644 index 0000000..7574b03 --- /dev/null +++ b/approved/Afmparse.toml @@ -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 +''' diff --git a/approved/Apache-1.0.toml b/approved/Apache-1.0.toml new file mode 100644 index 0000000..d1bfdd2 --- /dev/null +++ b/approved/Apache-1.0.toml @@ -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" diff --git a/approved/Apache-1.1.toml b/approved/Apache-1.1.toml new file mode 100644 index 0000000..b04dcf4 --- /dev/null +++ b/approved/Apache-1.1.toml @@ -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" diff --git a/approved/Apache-2.0.toml b/approved/Apache-2.0.toml new file mode 100644 index 0000000..4690ee1 --- /dev/null +++ b/approved/Apache-2.0.toml @@ -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" diff --git a/approved/App-s2p.toml b/approved/App-s2p.toml new file mode 100644 index 0000000..ea1bb1e --- /dev/null +++ b/approved/App-s2p.toml @@ -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 +''' diff --git a/approved/Artistic-2.0.toml b/approved/Artistic-2.0.toml new file mode 100644 index 0000000..c178e38 --- /dev/null +++ b/approved/Artistic-2.0.toml @@ -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" diff --git a/approved/BSD-2-Clause-FreeBSD.toml b/approved/BSD-2-Clause-FreeBSD.toml new file mode 100644 index 0000000..3eabf59 --- /dev/null +++ b/approved/BSD-2-Clause-FreeBSD.toml @@ -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" +''' diff --git a/approved/BSD-2-Clause-Patent.toml b/approved/BSD-2-Clause-Patent.toml new file mode 100644 index 0000000..c251c7b --- /dev/null +++ b/approved/BSD-2-Clause-Patent.toml @@ -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" diff --git a/approved/BSD-2-Clause.toml b/approved/BSD-2-Clause.toml new file mode 100644 index 0000000..b4f1b9e --- /dev/null +++ b/approved/BSD-2-Clause.toml @@ -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" +''' diff --git a/approved/BSD-3-Clause-Attribution.toml b/approved/BSD-3-Clause-Attribution.toml new file mode 100644 index 0000000..14c9462 --- /dev/null +++ b/approved/BSD-3-Clause-Attribution.toml @@ -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). +''' diff --git a/approved/BSD-3-Clause-LBNL.toml b/approved/BSD-3-Clause-LBNL.toml new file mode 100644 index 0000000..fda6dba --- /dev/null +++ b/approved/BSD-3-Clause-LBNL.toml @@ -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 +''' diff --git a/approved/BSD-3-Clause.toml b/approved/BSD-3-Clause.toml new file mode 100644 index 0000000..34b970f --- /dev/null +++ b/approved/BSD-3-Clause.toml @@ -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 +''' diff --git a/approved/BSD-4-Clause.toml b/approved/BSD-4-Clause.toml new file mode 100644 index 0000000..c5e1fcb --- /dev/null +++ b/approved/BSD-4-Clause.toml @@ -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 +''' diff --git a/approved/BSD-Protection.toml b/approved/BSD-Protection.toml new file mode 100644 index 0000000..449c734 --- /dev/null +++ b/approved/BSD-Protection.toml @@ -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. +''' diff --git a/approved/BSD_3-clause.toml b/approved/BSD_3-clause.toml new file mode 100644 index 0000000..da6ebba --- /dev/null +++ b/approved/BSD_3-clause.toml @@ -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 +''' diff --git a/approved/BSL-1.0.toml b/approved/BSL-1.0.toml new file mode 100644 index 0000000..0f8d3b9 --- /dev/null +++ b/approved/BSL-1.0.toml @@ -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" diff --git a/approved/Bahyph.toml b/approved/Bahyph.toml new file mode 100644 index 0000000..af50a42 --- /dev/null +++ b/approved/Bahyph.toml @@ -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). +''' diff --git a/approved/Barr.toml b/approved/Barr.toml new file mode 100644 index 0000000..ce45121 --- /dev/null +++ b/approved/Barr.toml @@ -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 +''' diff --git a/approved/Beerware.toml b/approved/Beerware.toml new file mode 100644 index 0000000..eb0d80e --- /dev/null +++ b/approved/Beerware.toml @@ -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. +''' diff --git a/approved/BitTorrent-1.1.toml b/approved/BitTorrent-1.1.toml new file mode 100644 index 0000000..fd7b62a --- /dev/null +++ b/approved/BitTorrent-1.1.toml @@ -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 +''' diff --git a/approved/Borceux.toml b/approved/Borceux.toml new file mode 100644 index 0000000..b39fb45 --- /dev/null +++ b/approved/Borceux.toml @@ -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. +''' diff --git a/approved/CATOSL-1.1.toml b/approved/CATOSL-1.1.toml new file mode 100644 index 0000000..744e3eb --- /dev/null +++ b/approved/CATOSL-1.1.toml @@ -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 # +''' diff --git a/approved/CC0-1.0.toml b/approved/CC0-1.0.toml new file mode 100644 index 0000000..5160b6d --- /dev/null +++ b/approved/CC0-1.0.toml @@ -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" diff --git a/approved/CDDL-1.0.toml b/approved/CDDL-1.0.toml new file mode 100644 index 0000000..0ed09f7 --- /dev/null +++ b/approved/CDDL-1.0.toml @@ -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" diff --git a/approved/CDDL-1.1.toml b/approved/CDDL-1.1.toml new file mode 100644 index 0000000..ee2aa88 --- /dev/null +++ b/approved/CDDL-1.1.toml @@ -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" diff --git a/approved/CECILL-1.1.toml b/approved/CECILL-1.1.toml new file mode 100644 index 0000000..f0da564 --- /dev/null +++ b/approved/CECILL-1.1.toml @@ -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 +''' diff --git a/approved/CECILL-2.0.toml b/approved/CECILL-2.0.toml new file mode 100644 index 0000000..a35e978 --- /dev/null +++ b/approved/CECILL-2.0.toml @@ -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 +''' diff --git a/approved/CECILL-B.toml b/approved/CECILL-B.toml new file mode 100644 index 0000000..0f8effc --- /dev/null +++ b/approved/CECILL-B.toml @@ -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 +''' diff --git a/approved/CECILL-C.toml b/approved/CECILL-C.toml new file mode 100644 index 0000000..fca924d --- /dev/null +++ b/approved/CECILL-C.toml @@ -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 +''' diff --git a/approved/CNRI-Python.toml b/approved/CNRI-Python.toml new file mode 100644 index 0000000..7a9f4fc --- /dev/null +++ b/approved/CNRI-Python.toml @@ -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" diff --git a/approved/CPAL-1.0.toml b/approved/CPAL-1.0.toml new file mode 100644 index 0000000..9d471e1 --- /dev/null +++ b/approved/CPAL-1.0.toml @@ -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 # +''' diff --git a/approved/CPL-1.0.toml b/approved/CPL-1.0.toml new file mode 100644 index 0000000..6e55e68 --- /dev/null +++ b/approved/CPL-1.0.toml @@ -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 # +''' diff --git a/approved/CUA-OPL-1.0.toml b/approved/CUA-OPL-1.0.toml new file mode 100644 index 0000000..cd84c06 --- /dev/null +++ b/approved/CUA-OPL-1.0.toml @@ -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" +''' diff --git a/approved/ClArtistic.toml b/approved/ClArtistic.toml new file mode 100644 index 0000000..e2d84bd --- /dev/null +++ b/approved/ClArtistic.toml @@ -0,0 +1,13 @@ +[license] + +expression = "ClArtistic" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/ArtisticClarified +''' + +[fedora] + +name = "Artistic (clarified)" +abbreviation = "Artistic clarified" diff --git a/approved/Condor-1.1.toml b/approved/Condor-1.1.toml new file mode 100644 index 0000000..259498e --- /dev/null +++ b/approved/Condor-1.1.toml @@ -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 # +''' diff --git a/approved/Crossword.toml b/approved/Crossword.toml new file mode 100644 index 0000000..dbe0654 --- /dev/null +++ b/approved/Crossword.toml @@ -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. +''' diff --git a/approved/CrystalStacker.toml b/approved/CrystalStacker.toml new file mode 100644 index 0000000..afd343c --- /dev/null +++ b/approved/CrystalStacker.toml @@ -0,0 +1,13 @@ +[license] + +expression = "CrystalStacker" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/CrystalStacker +''' + +[fedora] + +name = "Crystal Stacker License" +abbreviation = "Crystal Stacker" diff --git a/approved/Cube.toml b/approved/Cube.toml new file mode 100644 index 0000000..1fdaaa3 --- /dev/null +++ b/approved/Cube.toml @@ -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 +''' diff --git a/approved/DOC.toml b/approved/DOC.toml new file mode 100644 index 0000000..a3b15e4 --- /dev/null +++ b/approved/DOC.toml @@ -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. +''' diff --git a/approved/DSDP.toml b/approved/DSDP.toml new file mode 100644 index 0000000..2f4cf0b --- /dev/null +++ b/approved/DSDP.toml @@ -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. +''' diff --git a/approved/Dotseqn.toml b/approved/Dotseqn.toml new file mode 100644 index 0000000..b9d1dbc --- /dev/null +++ b/approved/Dotseqn.toml @@ -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 +''' diff --git a/approved/ECL-1.0.toml b/approved/ECL-1.0.toml new file mode 100644 index 0000000..696e2cc --- /dev/null +++ b/approved/ECL-1.0.toml @@ -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" diff --git a/approved/ECL-2.0.toml b/approved/ECL-2.0.toml new file mode 100644 index 0000000..cb570f5 --- /dev/null +++ b/approved/ECL-2.0.toml @@ -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" diff --git a/approved/EFL-2.0.toml b/approved/EFL-2.0.toml new file mode 100644 index 0000000..749fb00 --- /dev/null +++ b/approved/EFL-2.0.toml @@ -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" diff --git a/approved/EPICS.toml b/approved/EPICS.toml new file mode 100644 index 0000000..cee6207 --- /dev/null +++ b/approved/EPICS.toml @@ -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" diff --git a/approved/EPL-1.0.toml b/approved/EPL-1.0.toml new file mode 100644 index 0000000..bf42c89 --- /dev/null +++ b/approved/EPL-1.0.toml @@ -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" diff --git a/approved/EPL-2.0.toml b/approved/EPL-2.0.toml new file mode 100644 index 0000000..b9926d3 --- /dev/null +++ b/approved/EPL-2.0.toml @@ -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" diff --git a/approved/EUDatagrid.toml b/approved/EUDatagrid.toml new file mode 100644 index 0000000..8f2f46a --- /dev/null +++ b/approved/EUDatagrid.toml @@ -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" diff --git a/approved/EUPL-1.1.toml b/approved/EUPL-1.1.toml new file mode 100644 index 0000000..7c075ab --- /dev/null +++ b/approved/EUPL-1.1.toml @@ -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" diff --git a/approved/EUPL-1.2.toml b/approved/EUPL-1.2.toml new file mode 100644 index 0000000..b6c49af --- /dev/null +++ b/approved/EUPL-1.2.toml @@ -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" diff --git a/approved/Entessa.toml b/approved/Entessa.toml new file mode 100644 index 0000000..83164cc --- /dev/null +++ b/approved/Entessa.toml @@ -0,0 +1,13 @@ +[license] + +expression = "Entessa" +status = "approved" + +text = ''' +http://opensource.org/licenses/entessa.php +''' + +[fedora] + +name = "Entessa Public License" +abbreviation = "Entessa" diff --git a/approved/ErlPL-1.1.toml b/approved/ErlPL-1.1.toml new file mode 100644 index 0000000..3652f18 --- /dev/null +++ b/approved/ErlPL-1.1.toml @@ -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" diff --git a/approved/Eurosym.toml b/approved/Eurosym.toml new file mode 100644 index 0000000..3bde653 --- /dev/null +++ b/approved/Eurosym.toml @@ -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 +''' diff --git a/approved/FDK-AAC.toml b/approved/FDK-AAC.toml new file mode 100644 index 0000000..e131e93 --- /dev/null +++ b/approved/FDK-AAC.toml @@ -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 +''' diff --git a/approved/FSFAP.toml b/approved/FSFAP.toml new file mode 100644 index 0000000..8e553f7 --- /dev/null +++ b/approved/FSFAP.toml @@ -0,0 +1,13 @@ +[license] + +expression = "FSFAP" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/FSFAP +''' + +[fedora] + +name = "FSF All Permissive license" +abbreviation = "FSFAP" diff --git a/approved/FSFUL.toml b/approved/FSFUL.toml new file mode 100644 index 0000000..dae3727 --- /dev/null +++ b/approved/FSFUL.toml @@ -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. +''' diff --git a/approved/FSFULLR.toml b/approved/FSFULLR.toml new file mode 100644 index 0000000..81a5918 --- /dev/null +++ b/approved/FSFULLR.toml @@ -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. +''' diff --git a/approved/FTL.toml b/approved/FTL.toml new file mode 100644 index 0000000..4b1f8e5 --- /dev/null +++ b/approved/FTL.toml @@ -0,0 +1,13 @@ +[license] + +expression = "FTL" +status = "approved" + +text = ''' +http://freetype.fis.uniroma2.it/FTL.TXT +''' + +[fedora] + +name = "Freetype License" +abbreviation = "FTL" diff --git a/approved/Fair.toml b/approved/Fair.toml new file mode 100644 index 0000000..db61dfc --- /dev/null +++ b/approved/Fair.toml @@ -0,0 +1,13 @@ +[license] + +expression = "Fair" +status = "approved" + +text = ''' +http://opensource.org/licenses/fair.php +''' + +[fedora] + +name = "Fair License" +abbreviation = "Fair" diff --git a/approved/FreeImage.toml b/approved/FreeImage.toml new file mode 100644 index 0000000..1eca1e3 --- /dev/null +++ b/approved/FreeImage.toml @@ -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 +''' diff --git a/approved/GL2PS.toml b/approved/GL2PS.toml new file mode 100644 index 0000000..d0fbbb4 --- /dev/null +++ b/approved/GL2PS.toml @@ -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. +''' diff --git a/approved/GPL-1.0-only.toml b/approved/GPL-1.0-only.toml new file mode 100644 index 0000000..a0c9140 --- /dev/null +++ b/approved/GPL-1.0-only.toml @@ -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" diff --git a/approved/GPL-1.0-or-later.toml b/approved/GPL-1.0-or-later.toml new file mode 100644 index 0000000..e39e34d --- /dev/null +++ b/approved/GPL-1.0-or-later.toml @@ -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+" diff --git a/approved/GPL-1.0-or-later_OR_Artistic-1.0-Perl.toml b/approved/GPL-1.0-or-later_OR_Artistic-1.0-Perl.toml new file mode 100644 index 0000000..a0f6770 --- /dev/null +++ b/approved/GPL-1.0-or-later_OR_Artistic-1.0-Perl.toml @@ -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 +''' diff --git a/approved/GPL-1.0-or-later_WITH_Classpath-exception-2.0.toml b/approved/GPL-1.0-or-later_WITH_Classpath-exception-2.0.toml new file mode 100644 index 0000000..d8cdd42 --- /dev/null +++ b/approved/GPL-1.0-or-later_WITH_Classpath-exception-2.0.toml @@ -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" diff --git a/approved/GPL-1.0-or-later_WITH_Font-exception-2.0.toml b/approved/GPL-1.0-or-later_WITH_Font-exception-2.0.toml new file mode 100644 index 0000000..d5c2fbb --- /dev/null +++ b/approved/GPL-1.0-or-later_WITH_Font-exception-2.0.toml @@ -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" diff --git a/approved/GPL-2.0-only.toml b/approved/GPL-2.0-only.toml new file mode 100644 index 0000000..c9ce8a1 --- /dev/null +++ b/approved/GPL-2.0-only.toml @@ -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" diff --git a/approved/GPL-2.0-only_OR_Artistic-1.0-Perl.toml b/approved/GPL-2.0-only_OR_Artistic-1.0-Perl.toml new file mode 100644 index 0000000..2844f05 --- /dev/null +++ b/approved/GPL-2.0-only_OR_Artistic-1.0-Perl.toml @@ -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 +''' diff --git a/approved/GPL-2.0-only_WITH_Classpath-exception-2.0.toml b/approved/GPL-2.0-only_WITH_Classpath-exception-2.0.toml new file mode 100644 index 0000000..c6adfdb --- /dev/null +++ b/approved/GPL-2.0-only_WITH_Classpath-exception-2.0.toml @@ -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" diff --git a/approved/GPL-2.0-only_WITH_DigiRule-FOSS-exception_GPL-2.0-only_WITH_Universal-FOSS-exception-1.0.toml b/approved/GPL-2.0-only_WITH_DigiRule-FOSS-exception_GPL-2.0-only_WITH_Universal-FOSS-exception-1.0.toml new file mode 100644 index 0000000..4132497 --- /dev/null +++ b/approved/GPL-2.0-only_WITH_DigiRule-FOSS-exception_GPL-2.0-only_WITH_Universal-FOSS-exception-1.0.toml @@ -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 +''' diff --git a/approved/GPL-2.0-only_WITH_Font-exception-2.0.toml b/approved/GPL-2.0-only_WITH_Font-exception-2.0.toml new file mode 100644 index 0000000..64ea656 --- /dev/null +++ b/approved/GPL-2.0-only_WITH_Font-exception-2.0.toml @@ -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" diff --git a/approved/GPL-2.0-or-later.toml b/approved/GPL-2.0-or-later.toml new file mode 100644 index 0000000..785ec9c --- /dev/null +++ b/approved/GPL-2.0-or-later.toml @@ -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+" diff --git a/approved/GPL-2.0-or-later_OR_Artistic-1.0-Perl.toml b/approved/GPL-2.0-or-later_OR_Artistic-1.0-Perl.toml new file mode 100644 index 0000000..afe9fb6 --- /dev/null +++ b/approved/GPL-2.0-or-later_OR_Artistic-1.0-Perl.toml @@ -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 +''' diff --git a/approved/GPL-2.0-or-later_WITH_Classpath-exception-2.0.toml b/approved/GPL-2.0-or-later_WITH_Classpath-exception-2.0.toml new file mode 100644 index 0000000..3da1a3c --- /dev/null +++ b/approved/GPL-2.0-or-later_WITH_Classpath-exception-2.0.toml @@ -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" diff --git a/approved/GPL-2.0-or-later_WITH_Font-exception-2.0.toml b/approved/GPL-2.0-or-later_WITH_Font-exception-2.0.toml new file mode 100644 index 0000000..9b65a62 --- /dev/null +++ b/approved/GPL-2.0-or-later_WITH_Font-exception-2.0.toml @@ -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" diff --git a/approved/GPL-2.0-or-later_WITH_eCos-2.0.toml b/approved/GPL-2.0-or-later_WITH_eCos-2.0.toml new file mode 100644 index 0000000..750052a --- /dev/null +++ b/approved/GPL-2.0-or-later_WITH_eCos-2.0.toml @@ -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" diff --git a/approved/GPL-3.0-only.toml b/approved/GPL-3.0-only.toml new file mode 100644 index 0000000..727fcf8 --- /dev/null +++ b/approved/GPL-3.0-only.toml @@ -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" diff --git a/approved/GPL-3.0-only_WITH_Classpath-exception-2.0.toml b/approved/GPL-3.0-only_WITH_Classpath-exception-2.0.toml new file mode 100644 index 0000000..93d89ff --- /dev/null +++ b/approved/GPL-3.0-only_WITH_Classpath-exception-2.0.toml @@ -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" diff --git a/approved/GPL-3.0-only_WITH_Font-exception-2.0.toml b/approved/GPL-3.0-only_WITH_Font-exception-2.0.toml new file mode 100644 index 0000000..50ccd37 --- /dev/null +++ b/approved/GPL-3.0-only_WITH_Font-exception-2.0.toml @@ -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" diff --git a/approved/GPL-3.0-or-later.toml b/approved/GPL-3.0-or-later.toml new file mode 100644 index 0000000..81ad45a --- /dev/null +++ b/approved/GPL-3.0-or-later.toml @@ -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+" diff --git a/approved/GPL-3.0-or-later_WITH_Classpath-exception-2.0.toml b/approved/GPL-3.0-or-later_WITH_Classpath-exception-2.0.toml new file mode 100644 index 0000000..2584709 --- /dev/null +++ b/approved/GPL-3.0-or-later_WITH_Classpath-exception-2.0.toml @@ -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" diff --git a/approved/GPL-3.0-or-later_WITH_Font-exception-2.0.toml b/approved/GPL-3.0-or-later_WITH_Font-exception-2.0.toml new file mode 100644 index 0000000..448b35c --- /dev/null +++ b/approved/GPL-3.0-or-later_WITH_Font-exception-2.0.toml @@ -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" diff --git a/approved/Giftware.toml b/approved/Giftware.toml new file mode 100644 index 0000000..12ee892 --- /dev/null +++ b/approved/Giftware.toml @@ -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 +''' diff --git a/approved/Glide.toml b/approved/Glide.toml new file mode 100644 index 0000000..58b241d --- /dev/null +++ b/approved/Glide.toml @@ -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 +''' diff --git a/approved/Glulxe.toml b/approved/Glulxe.toml new file mode 100644 index 0000000..660320f --- /dev/null +++ b/approved/Glulxe.toml @@ -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. +''' diff --git a/approved/Gnuplot.toml b/approved/Gnuplot.toml new file mode 100644 index 0000000..8a514ba --- /dev/null +++ b/approved/Gnuplot.toml @@ -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. +''' diff --git a/approved/HPND.toml b/approved/HPND.toml new file mode 100644 index 0000000..5f4e0be --- /dev/null +++ b/approved/HPND.toml @@ -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 +''' diff --git a/approved/HaskellReport.toml b/approved/HaskellReport.toml new file mode 100644 index 0000000..8d0d1ab --- /dev/null +++ b/approved/HaskellReport.toml @@ -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 +''' diff --git a/approved/IJG.toml b/approved/IJG.toml new file mode 100644 index 0000000..4a577ed --- /dev/null +++ b/approved/IJG.toml @@ -0,0 +1,13 @@ +[license] + +expression = "IJG" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/IJG +''' + +[fedora] + +name = "Independent JPEG Group License" +abbreviation = "IJG" diff --git a/approved/IPL-1.0.toml b/approved/IPL-1.0.toml new file mode 100644 index 0000000..a69185b --- /dev/null +++ b/approved/IPL-1.0.toml @@ -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" diff --git a/approved/ISC.toml b/approved/ISC.toml new file mode 100644 index 0000000..7225f41 --- /dev/null +++ b/approved/ISC.toml @@ -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" diff --git a/approved/ImageMagick.toml b/approved/ImageMagick.toml new file mode 100644 index 0000000..65774bc --- /dev/null +++ b/approved/ImageMagick.toml @@ -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 +''' diff --git a/approved/Imlib2.toml b/approved/Imlib2.toml new file mode 100644 index 0000000..70cf8cc --- /dev/null +++ b/approved/Imlib2.toml @@ -0,0 +1,13 @@ +[license] + +expression = "Imlib2" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/Imlib2 +''' + +[fedora] + +name = "Imlib2 License" +abbreviation = "Imlib2" diff --git a/approved/Intel-ACPI.toml b/approved/Intel-ACPI.toml new file mode 100644 index 0000000..5e74c7d --- /dev/null +++ b/approved/Intel-ACPI.toml @@ -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. +''' diff --git a/approved/Interbase-1.0.toml b/approved/Interbase-1.0.toml new file mode 100644 index 0000000..9c20380 --- /dev/null +++ b/approved/Interbase-1.0.toml @@ -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 +''' diff --git a/approved/JasPer-2.0.toml b/approved/JasPer-2.0.toml new file mode 100644 index 0000000..1a947a6 --- /dev/null +++ b/approved/JasPer-2.0.toml @@ -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 +''' diff --git a/approved/LGPL-2.0-only_.toml b/approved/LGPL-2.0-only_.toml new file mode 100644 index 0000000..6d45e13 --- /dev/null +++ b/approved/LGPL-2.0-only_.toml @@ -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 +''' diff --git a/approved/LGPL-2.0-or-later.toml b/approved/LGPL-2.0-or-later.toml new file mode 100644 index 0000000..68e327c --- /dev/null +++ b/approved/LGPL-2.0-or-later.toml @@ -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+ +''' diff --git a/approved/LGPL-2.0-or-later_.toml b/approved/LGPL-2.0-or-later_.toml new file mode 100644 index 0000000..7335f9c --- /dev/null +++ b/approved/LGPL-2.0-or-later_.toml @@ -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+" diff --git a/approved/LGPL-2.0-or-later_OR_Artistic-1.0-Perl.toml b/approved/LGPL-2.0-or-later_OR_Artistic-1.0-Perl.toml new file mode 100644 index 0000000..779689c --- /dev/null +++ b/approved/LGPL-2.0-or-later_OR_Artistic-1.0-Perl.toml @@ -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 +''' diff --git a/approved/LGPL-2.0-or-later_WITH_FLTK-exception.toml b/approved/LGPL-2.0-or-later_WITH_FLTK-exception.toml new file mode 100644 index 0000000..db2399e --- /dev/null +++ b/approved/LGPL-2.0-or-later_WITH_FLTK-exception.toml @@ -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. +''' diff --git a/approved/LGPL-2.0-or-later_WITH_WxWindows-exception-3.1.toml b/approved/LGPL-2.0-or-later_WITH_WxWindows-exception-3.1.toml new file mode 100644 index 0000000..8b3f169 --- /dev/null +++ b/approved/LGPL-2.0-or-later_WITH_WxWindows-exception-3.1.toml @@ -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" diff --git a/approved/LGPL-2.1-only.toml b/approved/LGPL-2.1-only.toml new file mode 100644 index 0000000..24fb909 --- /dev/null +++ b/approved/LGPL-2.1-only.toml @@ -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" diff --git a/approved/LGPL-2.1-or-later.toml b/approved/LGPL-2.1-or-later.toml new file mode 100644 index 0000000..7dfcdd4 --- /dev/null +++ b/approved/LGPL-2.1-or-later.toml @@ -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+" diff --git a/approved/LGPL-2.1-or-later_WITH_Qwt-exception-1.0.toml b/approved/LGPL-2.1-or-later_WITH_Qwt-exception-1.0.toml new file mode 100644 index 0000000..5fe108d --- /dev/null +++ b/approved/LGPL-2.1-or-later_WITH_Qwt-exception-1.0.toml @@ -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" diff --git a/approved/LGPL-3.0-only.toml b/approved/LGPL-3.0-only.toml new file mode 100644 index 0000000..e0068b3 --- /dev/null +++ b/approved/LGPL-3.0-only.toml @@ -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" diff --git a/approved/LGPL-3.0-or-later.toml b/approved/LGPL-3.0-or-later.toml new file mode 100644 index 0000000..ad5c195 --- /dev/null +++ b/approved/LGPL-3.0-or-later.toml @@ -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+" diff --git a/approved/LPL-1.02.toml b/approved/LPL-1.02.toml new file mode 100644 index 0000000..81ffb9e --- /dev/null +++ b/approved/LPL-1.02.toml @@ -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 +''' diff --git a/approved/LPPL-1.3a.toml b/approved/LPPL-1.3a.toml new file mode 100644 index 0000000..e74bb30 --- /dev/null +++ b/approved/LPPL-1.3a.toml @@ -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 +''' diff --git a/approved/Latex2e.toml b/approved/Latex2e.toml new file mode 100644 index 0000000..db761e8 --- /dev/null +++ b/approved/Latex2e.toml @@ -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. +''' diff --git a/approved/Leptonica.toml b/approved/Leptonica.toml new file mode 100644 index 0000000..68e8bbc --- /dev/null +++ b/approved/Leptonica.toml @@ -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 +''' diff --git a/approved/MIT-0.toml b/approved/MIT-0.toml new file mode 100644 index 0000000..78abfbb --- /dev/null +++ b/approved/MIT-0.toml @@ -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" diff --git a/approved/MIT-CMU.toml b/approved/MIT-CMU.toml new file mode 100644 index 0000000..dc7084e --- /dev/null +++ b/approved/MIT-CMU.toml @@ -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. +''' diff --git a/approved/MIT-advertising.toml b/approved/MIT-advertising.toml new file mode 100644 index 0000000..f4c332f --- /dev/null +++ b/approved/MIT-advertising.toml @@ -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) +''' diff --git a/approved/MIT-enna.toml b/approved/MIT-enna.toml new file mode 100644 index 0000000..4a303ba --- /dev/null +++ b/approved/MIT-enna.toml @@ -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 +''' diff --git a/approved/MIT-feh.toml b/approved/MIT-feh.toml new file mode 100644 index 0000000..07016b8 --- /dev/null +++ b/approved/MIT-feh.toml @@ -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 +''' diff --git a/approved/MIT.toml b/approved/MIT.toml new file mode 100644 index 0000000..a9c996b --- /dev/null +++ b/approved/MIT.toml @@ -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 +''' diff --git a/approved/MITNFA.toml b/approved/MITNFA.toml new file mode 100644 index 0000000..5ad0bb1 --- /dev/null +++ b/approved/MITNFA.toml @@ -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" diff --git a/approved/MPL-1.0.toml b/approved/MPL-1.0.toml new file mode 100644 index 0000000..8fc3c75 --- /dev/null +++ b/approved/MPL-1.0.toml @@ -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" diff --git a/approved/MPL-1.1.toml b/approved/MPL-1.1.toml new file mode 100644 index 0000000..46dcae0 --- /dev/null +++ b/approved/MPL-1.1.toml @@ -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" diff --git a/approved/MPL-2.0.toml b/approved/MPL-2.0.toml new file mode 100644 index 0000000..e58f215 --- /dev/null +++ b/approved/MPL-2.0.toml @@ -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" diff --git a/approved/MS-PL.toml b/approved/MS-PL.toml new file mode 100644 index 0000000..b84d647 --- /dev/null +++ b/approved/MS-PL.toml @@ -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" diff --git a/approved/MS-RL.toml b/approved/MS-RL.toml new file mode 100644 index 0000000..f20025a --- /dev/null +++ b/approved/MS-RL.toml @@ -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" diff --git a/approved/MTLL.toml b/approved/MTLL.toml new file mode 100644 index 0000000..aebfdc2 --- /dev/null +++ b/approved/MTLL.toml @@ -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 +''' diff --git a/approved/MakeIndex.toml b/approved/MakeIndex.toml new file mode 100644 index 0000000..d7aa2bf --- /dev/null +++ b/approved/MakeIndex.toml @@ -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. +''' diff --git a/approved/MirOS.toml b/approved/MirOS.toml new file mode 100644 index 0000000..4993589 --- /dev/null +++ b/approved/MirOS.toml @@ -0,0 +1,13 @@ +[license] + +expression = "MirOS" +status = "approved" + +text = ''' +http://mirbsd.de/MirOS-Licence +''' + +[fedora] + +name = "MirOS License" +abbreviation = "MirOS" diff --git a/approved/Motosoto.toml b/approved/Motosoto.toml new file mode 100644 index 0000000..ed53eeb --- /dev/null +++ b/approved/Motosoto.toml @@ -0,0 +1,13 @@ +[license] + +expression = "Motosoto" +status = "approved" + +text = ''' +http://opensource.org/licenses/motosoto.php +''' + +[fedora] + +name = "Motosoto License" +abbreviation = "Motosoto" diff --git a/approved/Mup.toml b/approved/Mup.toml new file mode 100644 index 0000000..06fce7a --- /dev/null +++ b/approved/Mup.toml @@ -0,0 +1,13 @@ +[license] + +expression = "Mup" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/Mup +''' + +[fedora] + +name = "Mup License" +abbreviation = "Mup" diff --git a/approved/NCSA.toml b/approved/NCSA.toml new file mode 100644 index 0000000..27690a7 --- /dev/null +++ b/approved/NCSA.toml @@ -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" diff --git a/approved/NGPL.toml b/approved/NGPL.toml new file mode 100644 index 0000000..9542f84 --- /dev/null +++ b/approved/NGPL.toml @@ -0,0 +1,13 @@ +[license] + +expression = "NGPL" +status = "approved" + +text = ''' +http://opensource.org/licenses/nethack.php +''' + +[fedora] + +name = "Nethack General Public License" +abbreviation = "NGPL" diff --git a/approved/NIST-PD-fallback.toml b/approved/NIST-PD-fallback.toml new file mode 100644 index 0000000..5adb6f5 --- /dev/null +++ b/approved/NIST-PD-fallback.toml @@ -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? +''' diff --git a/approved/NLPL.toml b/approved/NLPL.toml new file mode 100644 index 0000000..a3b4169 --- /dev/null +++ b/approved/NLPL.toml @@ -0,0 +1,13 @@ +[license] + +expression = "NLPL" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/NLPL +''' + +[fedora] + +name = "No Limit Public License" +abbreviation = "NLPL" diff --git a/approved/NOSL.toml b/approved/NOSL.toml new file mode 100644 index 0000000..156d864 --- /dev/null +++ b/approved/NOSL.toml @@ -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" diff --git a/approved/NPL-1.0.toml b/approved/NPL-1.0.toml new file mode 100644 index 0000000..2dbe147 --- /dev/null +++ b/approved/NPL-1.0.toml @@ -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 +''' diff --git a/approved/NRL.toml b/approved/NRL.toml new file mode 100644 index 0000000..f8e2431 --- /dev/null +++ b/approved/NRL.toml @@ -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. +''' diff --git a/approved/Naumen.toml b/approved/Naumen.toml new file mode 100644 index 0000000..44c426b --- /dev/null +++ b/approved/Naumen.toml @@ -0,0 +1,13 @@ +[license] + +expression = "Naumen" +status = "approved" + +text = ''' +http://opensource.org/licenses/naumen.php +''' + +[fedora] + +name = "Naumen Public License" +abbreviation = "Naumen" diff --git a/approved/Newsletr.toml b/approved/Newsletr.toml new file mode 100644 index 0000000..670f9f5 --- /dev/null +++ b/approved/Newsletr.toml @@ -0,0 +1,13 @@ +[license] + +expression = "Newsletr" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/Newsletr +''' + +[fedora] + +name = "Newsletr License" +abbreviation = "Newsletr" diff --git a/approved/Nokia.toml b/approved/Nokia.toml new file mode 100644 index 0000000..f470dad --- /dev/null +++ b/approved/Nokia.toml @@ -0,0 +1,13 @@ +[license] + +expression = "Nokia" +status = "approved" + +text = ''' +http://opensource.org/licenses/nokia.html +''' + +[fedora] + +name = "Nokia Open Source License" +abbreviation = "Nokia" diff --git a/approved/Noweb.toml b/approved/Noweb.toml new file mode 100644 index 0000000..8e9946a --- /dev/null +++ b/approved/Noweb.toml @@ -0,0 +1,13 @@ +[license] + +expression = "Noweb" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/Noweb +''' + +[fedora] + +name = "Noweb License" +abbreviation = "Noweb" diff --git a/approved/Nunit_zlib-acknowledgement.toml b/approved/Nunit_zlib-acknowledgement.toml new file mode 100644 index 0000000..0a58326 --- /dev/null +++ b/approved/Nunit_zlib-acknowledgement.toml @@ -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 +''' diff --git a/approved/OGL-UK-3.0.toml b/approved/OGL-UK-3.0.toml new file mode 100644 index 0000000..1cca85b --- /dev/null +++ b/approved/OGL-UK-3.0.toml @@ -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 +''' diff --git a/approved/OLDAP-2.8.toml b/approved/OLDAP-2.8.toml new file mode 100644 index 0000000..a9f7282 --- /dev/null +++ b/approved/OLDAP-2.8.toml @@ -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" diff --git a/approved/OML.toml b/approved/OML.toml new file mode 100644 index 0000000..d2e3c10 --- /dev/null +++ b/approved/OML.toml @@ -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" diff --git a/approved/OSL-1.0.toml b/approved/OSL-1.0.toml new file mode 100644 index 0000000..cbdf946 --- /dev/null +++ b/approved/OSL-1.0.toml @@ -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" diff --git a/approved/OSL-2.0.toml b/approved/OSL-2.0.toml new file mode 100644 index 0000000..39c71d2 --- /dev/null +++ b/approved/OSL-2.0.toml @@ -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" diff --git a/approved/OSL-2.1.toml b/approved/OSL-2.1.toml new file mode 100644 index 0000000..abfc7d7 --- /dev/null +++ b/approved/OSL-2.1.toml @@ -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" diff --git a/approved/OSL-3.0.toml b/approved/OSL-3.0.toml new file mode 100644 index 0000000..1e52b34 --- /dev/null +++ b/approved/OSL-3.0.toml @@ -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" diff --git a/approved/OpenSSL.toml b/approved/OpenSSL.toml new file mode 100644 index 0000000..b2b53ba --- /dev/null +++ b/approved/OpenSSL.toml @@ -0,0 +1,13 @@ +[license] + +expression = "OpenSSL" +status = "approved" + +text = ''' +http://www.sdisw.com/openssl.htm +''' + +[fedora] + +name = "OpenSSL License" +abbreviation = "OpenSSL" diff --git a/approved/PHP-3.01.toml b/approved/PHP-3.01.toml new file mode 100644 index 0000000..d7614c2 --- /dev/null +++ b/approved/PHP-3.01.toml @@ -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 +''' diff --git a/approved/Plexus.toml b/approved/Plexus.toml new file mode 100644 index 0000000..028ef66 --- /dev/null +++ b/approved/Plexus.toml @@ -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" diff --git a/approved/PostgreSQL.toml b/approved/PostgreSQL.toml new file mode 100644 index 0000000..e9929f8 --- /dev/null +++ b/approved/PostgreSQL.toml @@ -0,0 +1,13 @@ +[license] + +expression = "PostgreSQL" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/PostgreSQL_License +''' + +[fedora] + +name = "PostgreSQL License" +abbreviation = "PostgreSQL" diff --git a/approved/QPL-1.0.toml b/approved/QPL-1.0.toml new file mode 100644 index 0000000..2cf9e33 --- /dev/null +++ b/approved/QPL-1.0.toml @@ -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" diff --git a/approved/Qhull.toml b/approved/Qhull.toml new file mode 100644 index 0000000..225c666 --- /dev/null +++ b/approved/Qhull.toml @@ -0,0 +1,13 @@ +[license] + +expression = "Qhull" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/Qhull +''' + +[fedora] + +name = "Qhull License" +abbreviation = "Qhull" diff --git a/approved/RPSL-1.0.toml b/approved/RPSL-1.0.toml new file mode 100644 index 0000000..d02b3ad --- /dev/null +++ b/approved/RPSL-1.0.toml @@ -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" diff --git a/approved/Rdisc.toml b/approved/Rdisc.toml new file mode 100644 index 0000000..3973445 --- /dev/null +++ b/approved/Rdisc.toml @@ -0,0 +1,13 @@ +[license] + +expression = "Rdisc" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/Rdisc_License +''' + +[fedora] + +name = "Rdisc License" +abbreviation = "Rdisc" diff --git a/approved/Ruby.toml b/approved/Ruby.toml new file mode 100644 index 0000000..c62435a --- /dev/null +++ b/approved/Ruby.toml @@ -0,0 +1,13 @@ +[license] + +expression = "Ruby" +status = "approved" + +text = ''' +http://www.ruby-lang.org/en/LICENSE.txt +''' + +[fedora] + +name = "Ruby License" +abbreviation = "Ruby" diff --git a/approved/SCEA.toml b/approved/SCEA.toml new file mode 100644 index 0000000..61011f5 --- /dev/null +++ b/approved/SCEA.toml @@ -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 +''' diff --git a/approved/SGI-B-2.0.toml b/approved/SGI-B-2.0.toml new file mode 100644 index 0000000..601b2fe --- /dev/null +++ b/approved/SGI-B-2.0.toml @@ -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" +''' diff --git a/approved/SISSL.toml b/approved/SISSL.toml new file mode 100644 index 0000000..e2b43cb --- /dev/null +++ b/approved/SISSL.toml @@ -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" diff --git a/approved/SNIA.toml b/approved/SNIA.toml new file mode 100644 index 0000000..d2b7385 --- /dev/null +++ b/approved/SNIA.toml @@ -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 +''' diff --git a/approved/SPL-1.0.toml b/approved/SPL-1.0.toml new file mode 100644 index 0000000..33518b0 --- /dev/null +++ b/approved/SPL-1.0.toml @@ -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" diff --git a/approved/SWL.toml b/approved/SWL.toml new file mode 100644 index 0000000..d531460 --- /dev/null +++ b/approved/SWL.toml @@ -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" diff --git a/approved/Saxpath.toml b/approved/Saxpath.toml new file mode 100644 index 0000000..7cb7041 --- /dev/null +++ b/approved/Saxpath.toml @@ -0,0 +1,13 @@ +[license] + +expression = "Saxpath" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/Saxpath_License +''' + +[fedora] + +name = "Saxpath License" +abbreviation = "Saxpath" diff --git a/approved/Sendmail-8.23.toml b/approved/Sendmail-8.23.toml new file mode 100644 index 0000000..9d69327 --- /dev/null +++ b/approved/Sendmail-8.23.toml @@ -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 +''' diff --git a/approved/Sleepycat.toml b/approved/Sleepycat.toml new file mode 100644 index 0000000..cabee1d --- /dev/null +++ b/approved/Sleepycat.toml @@ -0,0 +1,13 @@ +[license] + +expression = "Sleepycat" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/Sleepycat +''' + +[fedora] + +name = "Sleepycat Software Product License" +abbreviation = "Sleepycat" diff --git a/approved/Spencer-86.toml b/approved/Spencer-86.toml new file mode 100644 index 0000000..a6caf5a --- /dev/null +++ b/approved/Spencer-86.toml @@ -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 +''' diff --git a/approved/Spencer-94.toml b/approved/Spencer-94.toml new file mode 100644 index 0000000..fc36a14 --- /dev/null +++ b/approved/Spencer-94.toml @@ -0,0 +1,9 @@ +[license] + +expression = "Spencer-94" +status = "approved" + +[fedora] + +name = "Henry Spencer Reg-Ex Library License" +abbreviation = "HSRL" diff --git a/approved/StandardML-NJ.toml b/approved/StandardML-NJ.toml new file mode 100644 index 0000000..867b653 --- /dev/null +++ b/approved/StandardML-NJ.toml @@ -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. +''' diff --git a/approved/TCL.toml b/approved/TCL.toml new file mode 100644 index 0000000..62cbd5d --- /dev/null +++ b/approved/TCL.toml @@ -0,0 +1,13 @@ +[license] + +expression = "TCL" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/TCL +''' + +[fedora] + +name = "TCL/TK License" +abbreviation = "TCL" diff --git a/approved/TMate.toml b/approved/TMate.toml new file mode 100644 index 0000000..6da83c3 --- /dev/null +++ b/approved/TMate.toml @@ -0,0 +1,13 @@ +[license] + +expression = "TMate" +status = "approved" + +text = ''' +http://svnkit.com/license.html +''' + +[fedora] + +name = "TMate Open Source License" +abbreviation = "TMate" diff --git a/approved/TORQUE-1.1.toml b/approved/TORQUE-1.1.toml new file mode 100644 index 0000000..659d66d --- /dev/null +++ b/approved/TORQUE-1.1.toml @@ -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 +''' diff --git a/approved/TOSL.toml b/approved/TOSL.toml new file mode 100644 index 0000000..93b5dc6 --- /dev/null +++ b/approved/TOSL.toml @@ -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 +''' diff --git a/approved/UPL-1.0.toml b/approved/UPL-1.0.toml new file mode 100644 index 0000000..a556cd4 --- /dev/null +++ b/approved/UPL-1.0.toml @@ -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" diff --git a/approved/Unicode-DFS-2015.toml b/approved/Unicode-DFS-2015.toml new file mode 100644 index 0000000..0143fc1 --- /dev/null +++ b/approved/Unicode-DFS-2015.toml @@ -0,0 +1,13 @@ +[license] + +expression = "Unicode-DFS-2015" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/Unicode +''' + +[fedora] + +name = "Unicode License" +abbreviation = "Unicode" diff --git a/approved/Unlicense.toml b/approved/Unlicense.toml new file mode 100644 index 0000000..cfacbbd --- /dev/null +++ b/approved/Unlicense.toml @@ -0,0 +1,13 @@ +[license] + +expression = "Unlicense" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/Unlicense +''' + +[fedora] + +name = "Unlicense" +abbreviation = "Unlicense" diff --git a/approved/VOSTROM.toml b/approved/VOSTROM.toml new file mode 100644 index 0000000..431bc1e --- /dev/null +++ b/approved/VOSTROM.toml @@ -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" diff --git a/approved/VSL-1.0.toml b/approved/VSL-1.0.toml new file mode 100644 index 0000000..d967cca --- /dev/null +++ b/approved/VSL-1.0.toml @@ -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" diff --git a/approved/Vim.toml b/approved/Vim.toml new file mode 100644 index 0000000..8dd27c7 --- /dev/null +++ b/approved/Vim.toml @@ -0,0 +1,13 @@ +[license] + +expression = "Vim" +status = "approved" + +text = ''' +http://vimdoc.sourceforge.net/htmldoc/uganda.html +''' + +[fedora] + +name = "Vim License" +abbreviation = "Vim" diff --git a/approved/W3C.toml b/approved/W3C.toml new file mode 100644 index 0000000..fa46d14 --- /dev/null +++ b/approved/W3C.toml @@ -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" diff --git a/approved/WTFPL.toml b/approved/WTFPL.toml new file mode 100644 index 0000000..612763f --- /dev/null +++ b/approved/WTFPL.toml @@ -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" diff --git a/approved/WXwindows.toml b/approved/WXwindows.toml new file mode 100644 index 0000000..d48dd9c --- /dev/null +++ b/approved/WXwindows.toml @@ -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. +''' diff --git a/approved/Wsuipa.toml b/approved/Wsuipa.toml new file mode 100644 index 0000000..a65fc06 --- /dev/null +++ b/approved/Wsuipa.toml @@ -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 +''' diff --git a/approved/XSkat.toml b/approved/XSkat.toml new file mode 100644 index 0000000..aa3b63e --- /dev/null +++ b/approved/XSkat.toml @@ -0,0 +1,13 @@ +[license] + +expression = "XSkat" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/XSkat_License +''' + +[fedora] + +name = "XSkat License" +abbreviation = "XSkat" diff --git a/approved/Xerox.toml b/approved/Xerox.toml new file mode 100644 index 0000000..876285f --- /dev/null +++ b/approved/Xerox.toml @@ -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" +''' diff --git a/approved/YPL-1.1.toml b/approved/YPL-1.1.toml new file mode 100644 index 0000000..56beb84 --- /dev/null +++ b/approved/YPL-1.1.toml @@ -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" diff --git a/approved/ZPL-2.0.toml b/approved/ZPL-2.0.toml new file mode 100644 index 0000000..a76c35e --- /dev/null +++ b/approved/ZPL-2.0.toml @@ -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" diff --git a/approved/ZPL-2.1.toml b/approved/ZPL-2.1.toml new file mode 100644 index 0000000..cab5480 --- /dev/null +++ b/approved/ZPL-2.1.toml @@ -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" diff --git a/approved/Zed.toml b/approved/Zed.toml new file mode 100644 index 0000000..8f57b31 --- /dev/null +++ b/approved/Zed.toml @@ -0,0 +1,13 @@ +[license] + +expression = "Zed" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/Zed +''' + +[fedora] + +name = "Zed License" +abbreviation = "Zed" diff --git a/approved/Zend-2.0.toml b/approved/Zend-2.0.toml new file mode 100644 index 0000000..792a492 --- /dev/null +++ b/approved/Zend-2.0.toml @@ -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 +''' diff --git a/approved/Zlib.toml b/approved/Zlib.toml new file mode 100644 index 0000000..2744440 --- /dev/null +++ b/approved/Zlib.toml @@ -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" diff --git a/approved/diffmark.toml b/approved/diffmark.toml new file mode 100644 index 0000000..1aafc9f --- /dev/null +++ b/approved/diffmark.toml @@ -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 +''' diff --git a/approved/dvipdfm.toml b/approved/dvipdfm.toml new file mode 100644 index 0000000..ae9a59a --- /dev/null +++ b/approved/dvipdfm.toml @@ -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 +''' diff --git a/approved/eGenix.toml b/approved/eGenix.toml new file mode 100644 index 0000000..d6a2549 --- /dev/null +++ b/approved/eGenix.toml @@ -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 +''' diff --git a/approved/iMatix.toml b/approved/iMatix.toml new file mode 100644 index 0000000..0cf721d --- /dev/null +++ b/approved/iMatix.toml @@ -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. +''' diff --git a/approved/libtiff.toml b/approved/libtiff.toml new file mode 100644 index 0000000..7c12ec9 --- /dev/null +++ b/approved/libtiff.toml @@ -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 +''' diff --git a/approved/mpich2.toml b/approved/mpich2.toml new file mode 100644 index 0000000..9fa73d3 --- /dev/null +++ b/approved/mpich2.toml @@ -0,0 +1,13 @@ +[license] + +expression = "mpich2" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/MIT +''' + +[fedora] + +name = "mpich2 License" +abbreviation = "MIT" diff --git a/approved/psfrag.toml b/approved/psfrag.toml new file mode 100644 index 0000000..c9da2a8 --- /dev/null +++ b/approved/psfrag.toml @@ -0,0 +1,13 @@ +[license] + +expression = "psfrag" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/psfrag +''' + +[fedora] + +name = "psfrag License" +abbreviation = "psfrag" diff --git a/approved/psutils.toml b/approved/psutils.toml new file mode 100644 index 0000000..6378830 --- /dev/null +++ b/approved/psutils.toml @@ -0,0 +1,13 @@ +[license] + +expression = "psutils" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/psutils +''' + +[fedora] + +name = "psutils License" +abbreviation = "psutils" diff --git a/approved/xinetd.toml b/approved/xinetd.toml new file mode 100644 index 0000000..35ff273 --- /dev/null +++ b/approved/xinetd.toml @@ -0,0 +1,13 @@ +[license] + +expression = "xinetd" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/Xinetd_License +''' + +[fedora] + +name = "xinetd License" +abbreviation = "xinetd" diff --git a/approved/xpp.toml b/approved/xpp.toml new file mode 100644 index 0000000..57bd264 --- /dev/null +++ b/approved/xpp.toml @@ -0,0 +1,13 @@ +[license] + +expression = "xpp" +status = "approved" + +text = ''' +https://fedoraproject.org/wiki/Licensing/xpp +''' + +[fedora] + +name = "XPP License" +abbreviation = "xpp" diff --git a/approved/zlib-acknowledgement.toml b/approved/zlib-acknowledgement.toml new file mode 100644 index 0000000..7af8a9e --- /dev/null +++ b/approved/zlib-acknowledgement.toml @@ -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 +''' diff --git a/approved/zlib.toml b/approved/zlib.toml new file mode 100644 index 0000000..4e48ac7 --- /dev/null +++ b/approved/zlib.toml @@ -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. +''' diff --git a/bad.tsv b/bad.tsv new file mode 100644 index 0000000..bb5cc31 --- /dev/null +++ b/bad.tsv @@ -0,0 +1,57 @@ +Affero General Public License 3.0 with Zarafa trademark exceptions AGPLv3 with exceptions AGPL-3.0-only WITH AGPL-3.0-or-later WITH 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)" diff --git a/data/9wm/9wm_License_Original.yaml b/data/9wm/9wm_License_Original.yaml deleted file mode 100644 index 8680af0..0000000 --- a/data/9wm/9wm_License_Original.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: 9wm License (Original) -name: 9wm License (Original) -url: http://unauthorised.org/dhog/9wm/README diff --git a/data/AAL/AAL.yaml b/data/AAL/AAL.yaml deleted file mode 100644 index a62bd60..0000000 --- a/data/AAL/AAL.yaml +++ /dev/null @@ -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 diff --git a/data/AMAP/AMAP_License.yaml b/data/AMAP/AMAP_License.yaml deleted file mode 100644 index fa5e7d8..0000000 --- a/data/AMAP/AMAP_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: AMAP License -name: AMAP License -url: https://fedoraproject.org/wiki/Licensing/AMAP_License diff --git a/data/AMD/AMDPLPA.yaml b/data/AMD/AMDPLPA.yaml deleted file mode 100644 index a8c1ecd..0000000 --- a/data/AMD/AMDPLPA.yaml +++ /dev/null @@ -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 diff --git a/data/AMS/AMS.yaml b/data/AMS/AMS.yaml deleted file mode 100644 index 3ac7add..0000000 --- a/data/AMS/AMS.yaml +++ /dev/null @@ -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 diff --git a/data/ARM-SDK/License_Agreement_for_Application_Response_Measurement_ARM_SDK.yaml b/data/ARM-SDK/License_Agreement_for_Application_Response_Measurement_ARM_SDK.yaml deleted file mode 100644 index 6f870d1..0000000 --- a/data/ARM-SDK/License_Agreement_for_Application_Response_Measurement_ARM_SDK.yaml +++ /dev/null @@ -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 diff --git a/data/Abstyles/Abstyles.yaml b/data/Abstyles/Abstyles.yaml deleted file mode 100644 index f7c93bc..0000000 --- a/data/Abstyles/Abstyles.yaml +++ /dev/null @@ -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 diff --git a/data/Academic/AFL-1.1.yaml b/data/Academic/AFL-1.1.yaml deleted file mode 100644 index 360578a..0000000 --- a/data/Academic/AFL-1.1.yaml +++ /dev/null @@ -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 diff --git a/data/Academic/AFL-1.2.yaml b/data/Academic/AFL-1.2.yaml deleted file mode 100644 index 67d4f46..0000000 --- a/data/Academic/AFL-1.2.yaml +++ /dev/null @@ -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 diff --git a/data/Academic/AFL-2.0.yaml b/data/Academic/AFL-2.0.yaml deleted file mode 100644 index af23209..0000000 --- a/data/Academic/AFL-2.0.yaml +++ /dev/null @@ -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 diff --git a/data/Academic/AFL-2.1.yaml b/data/Academic/AFL-2.1.yaml deleted file mode 100644 index b6f4978..0000000 --- a/data/Academic/AFL-2.1.yaml +++ /dev/null @@ -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 diff --git a/data/Academic/AFL.yaml b/data/Academic/AFL.yaml deleted file mode 100644 index e1ed685..0000000 --- a/data/Academic/AFL.yaml +++ /dev/null @@ -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 diff --git a/data/Adaptive/APL-1.0.yaml b/data/Adaptive/APL-1.0.yaml deleted file mode 100644 index b0bf5a0..0000000 --- a/data/Adaptive/APL-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/Adobe/APAFML.yaml b/data/Adobe/APAFML.yaml deleted file mode 100644 index 31a2549..0000000 --- a/data/Adobe/APAFML.yaml +++ /dev/null @@ -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 diff --git a/data/Adobe/Adobe.yaml b/data/Adobe/Adobe.yaml deleted file mode 100644 index 98d742d..0000000 --- a/data/Adobe/Adobe.yaml +++ /dev/null @@ -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 diff --git a/data/Adobe/Utopia.yaml b/data/Adobe/Utopia.yaml deleted file mode 100644 index 3f4445e..0000000 --- a/data/Adobe/Utopia.yaml +++ /dev/null @@ -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 diff --git a/data/Afmparse/Afmparse.yaml b/data/Afmparse/Afmparse.yaml deleted file mode 100644 index 8eb4859..0000000 --- a/data/Afmparse/Afmparse.yaml +++ /dev/null @@ -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 diff --git a/data/Agere/Agere_LT_Modem_Driver_License.yaml b/data/Agere/Agere_LT_Modem_Driver_License.yaml deleted file mode 100644 index 203bc25..0000000 --- a/data/Agere/Agere_LT_Modem_Driver_License.yaml +++ /dev/null @@ -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 diff --git a/data/Aladdin/Aladdin.yaml b/data/Aladdin/Aladdin.yaml deleted file mode 100644 index 47a30ca..0000000 --- a/data/Aladdin/Aladdin.yaml +++ /dev/null @@ -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 diff --git a/data/Amazon/ADSL.yaml b/data/Amazon/ADSL.yaml deleted file mode 100644 index ca11aa2..0000000 --- a/data/Amazon/ADSL.yaml +++ /dev/null @@ -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 diff --git a/data/Amazon/Amazon_Software_License.yaml b/data/Amazon/Amazon_Software_License.yaml deleted file mode 100644 index 7730eac..0000000 --- a/data/Amazon/Amazon_Software_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Amazon Software License -name: Amazon Software License -url: http://aws.amazon.com/asl/ diff --git a/data/Antlr/ANTLR-PD.yaml b/data/Antlr/ANTLR-PD.yaml deleted file mode 100644 index 67c9980..0000000 --- a/data/Antlr/ANTLR-PD.yaml +++ /dev/null @@ -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 diff --git a/data/Antlr/The_Antlr_2.7.7_License.yaml b/data/Antlr/The_Antlr_2.7.7_License.yaml deleted file mode 100644 index 4c68475..0000000 --- a/data/Antlr/The_Antlr_2.7.7_License.yaml +++ /dev/null @@ -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 diff --git a/data/Apache/ASL_1.0.yaml b/data/Apache/ASL_1.0.yaml deleted file mode 100644 index c65598f..0000000 --- a/data/Apache/ASL_1.0.yaml +++ /dev/null @@ -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 diff --git a/data/Apache/ASL_1.1.yaml b/data/Apache/ASL_1.1.yaml deleted file mode 100644 index cd24f62..0000000 --- a/data/Apache/ASL_1.1.yaml +++ /dev/null @@ -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 diff --git a/data/Apache/ASL_2.0.yaml b/data/Apache/ASL_2.0.yaml deleted file mode 100644 index f03df09..0000000 --- a/data/Apache/ASL_2.0.yaml +++ /dev/null @@ -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 diff --git a/data/App-s2p/App-s2p.yaml b/data/App-s2p/App-s2p.yaml deleted file mode 100644 index 26f3a5d..0000000 --- a/data/App-s2p/App-s2p.yaml +++ /dev/null @@ -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 diff --git a/data/Apple/AML.yaml b/data/Apple/AML.yaml deleted file mode 100644 index db0940e..0000000 --- a/data/Apple/AML.yaml +++ /dev/null @@ -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 diff --git a/data/Apple/APSL-1.0.yaml b/data/Apple/APSL-1.0.yaml deleted file mode 100644 index 5e54ba4..0000000 --- a/data/Apple/APSL-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/Apple/APSL-1.1.yaml b/data/Apple/APSL-1.1.yaml deleted file mode 100644 index 9a854ea..0000000 --- a/data/Apple/APSL-1.1.yaml +++ /dev/null @@ -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 diff --git a/data/Apple/APSL-1.2.yaml b/data/Apple/APSL-1.2.yaml deleted file mode 100644 index 147a5e4..0000000 --- a/data/Apple/APSL-1.2.yaml +++ /dev/null @@ -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 diff --git a/data/Apple/APSL_2.0.yaml b/data/Apple/APSL_2.0.yaml deleted file mode 100644 index 6ef04a5..0000000 --- a/data/Apple/APSL_2.0.yaml +++ /dev/null @@ -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/ diff --git a/data/Apple/Apple_Quicktime_License.yaml b/data/Apple/Apple_Quicktime_License.yaml deleted file mode 100644 index ae7f2f2..0000000 --- a/data/Apple/Apple_Quicktime_License.yaml +++ /dev/null @@ -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 diff --git a/data/Apple/Apple_iTunes_License.yaml b/data/Apple/Apple_iTunes_License.yaml deleted file mode 100644 index 090b0cc..0000000 --- a/data/Apple/Apple_iTunes_License.yaml +++ /dev/null @@ -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 diff --git a/data/Apple/CDL.yaml b/data/Apple/CDL.yaml deleted file mode 100644 index beb2ec3..0000000 --- a/data/Apple/CDL.yaml +++ /dev/null @@ -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 diff --git a/data/Aptana/Aptana_Public_License.yaml b/data/Aptana/Aptana_Public_License.yaml deleted file mode 100644 index 4e1b44f..0000000 --- a/data/Aptana/Aptana_Public_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Aptana Public License -name: Aptana Public License -url: http://aptana.com/legal/apl/ diff --git a/data/Arphic/Arphic.yaml b/data/Arphic/Arphic.yaml deleted file mode 100644 index 79498e9..0000000 --- a/data/Arphic/Arphic.yaml +++ /dev/null @@ -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 diff --git a/data/Array/Array.yaml b/data/Array/Array.yaml deleted file mode 100644 index 5d59237..0000000 --- a/data/Array/Array.yaml +++ /dev/null @@ -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 diff --git a/data/Artistic/Artistic-1.0-Perl.yaml b/data/Artistic/Artistic-1.0-Perl.yaml deleted file mode 100644 index 54c8aa3..0000000 --- a/data/Artistic/Artistic-1.0-Perl.yaml +++ /dev/null @@ -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 diff --git a/data/Artistic/Artistic-1.0-cl8.yaml b/data/Artistic/Artistic-1.0-cl8.yaml deleted file mode 100644 index 0a451f7..0000000 --- a/data/Artistic/Artistic-1.0-cl8.yaml +++ /dev/null @@ -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 diff --git a/data/Artistic/Artistic-1.0.yaml b/data/Artistic/Artistic-1.0.yaml deleted file mode 100644 index 4e5e77e..0000000 --- a/data/Artistic/Artistic-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/Artistic/Artistic_1.0_original.yaml b/data/Artistic/Artistic_1.0_original.yaml deleted file mode 100644 index ddb53e8..0000000 --- a/data/Artistic/Artistic_1.0_original.yaml +++ /dev/null @@ -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 diff --git a/data/Artistic/Artistic_2.0.yaml b/data/Artistic/Artistic_2.0.yaml deleted file mode 100644 index 182cb40..0000000 --- a/data/Artistic/Artistic_2.0.yaml +++ /dev/null @@ -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 diff --git a/data/Artistic/Artistic_clarified.yaml b/data/Artistic/Artistic_clarified.yaml deleted file mode 100644 index 226f926..0000000 --- a/data/Artistic/Artistic_clarified.yaml +++ /dev/null @@ -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 diff --git a/data/Artistic/Frontier_Artistic_License.yaml b/data/Artistic/Frontier_Artistic_License.yaml deleted file mode 100644 index dcf00cd..0000000 --- a/data/Artistic/Frontier_Artistic_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Frontier Artistic License -name: Frontier Artistic License -url: http://www.spinwardstars.com/frontier/fal.html diff --git a/data/Aspell/ARL.yaml b/data/Aspell/ARL.yaml deleted file mode 100644 index a1dc869..0000000 --- a/data/Aspell/ARL.yaml +++ /dev/null @@ -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 diff --git a/data/BSD/0BSD.yaml b/data/BSD/0BSD.yaml deleted file mode 100644 index 1edade6..0000000 --- a/data/BSD/0BSD.yaml +++ /dev/null @@ -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 diff --git a/data/BSD/AMPAS_BSD.yaml b/data/BSD/AMPAS_BSD.yaml deleted file mode 100644 index e3ad236..0000000 --- a/data/BSD/AMPAS_BSD.yaml +++ /dev/null @@ -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 diff --git a/data/BSD/BSD-2-Clause-NetBSD.yaml b/data/BSD/BSD-2-Clause-NetBSD.yaml deleted file mode 100644 index cbcce49..0000000 --- a/data/BSD/BSD-2-Clause-NetBSD.yaml +++ /dev/null @@ -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 diff --git a/data/BSD/BSD-2-Clause-Patent.yaml b/data/BSD/BSD-2-Clause-Patent.yaml deleted file mode 100644 index e1518dc..0000000 --- a/data/BSD/BSD-2-Clause-Patent.yaml +++ /dev/null @@ -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 diff --git a/data/BSD/BSD-2-Clause.yaml b/data/BSD/BSD-2-Clause.yaml deleted file mode 100644 index 8cf7210..0000000 --- a/data/BSD/BSD-2-Clause.yaml +++ /dev/null @@ -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 diff --git a/data/BSD/BSD-3-Clause-Clear.yaml b/data/BSD/BSD-3-Clause-Clear.yaml deleted file mode 100644 index a2795d5..0000000 --- a/data/BSD/BSD-3-Clause-Clear.yaml +++ /dev/null @@ -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 diff --git a/data/BSD/BSD-3-Clause-No-Nuclear-License-2014.yaml b/data/BSD/BSD-3-Clause-No-Nuclear-License-2014.yaml deleted file mode 100644 index 80f15f4..0000000 --- a/data/BSD/BSD-3-Clause-No-Nuclear-License-2014.yaml +++ /dev/null @@ -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 diff --git a/data/BSD/BSD-3-Clause-No-Nuclear-License.yaml b/data/BSD/BSD-3-Clause-No-Nuclear-License.yaml deleted file mode 100644 index 63ef2bf..0000000 --- a/data/BSD/BSD-3-Clause-No-Nuclear-License.yaml +++ /dev/null @@ -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 diff --git a/data/BSD/BSD-3-Clause-No-Nuclear-Warranty.yaml b/data/BSD/BSD-3-Clause-No-Nuclear-Warranty.yaml deleted file mode 100644 index 120c877..0000000 --- a/data/BSD/BSD-3-Clause-No-Nuclear-Warranty.yaml +++ /dev/null @@ -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 diff --git a/data/BSD/BSD-4-Clause-UC.yaml b/data/BSD/BSD-4-Clause-UC.yaml deleted file mode 100644 index 1dda56c..0000000 --- a/data/BSD/BSD-4-Clause-UC.yaml +++ /dev/null @@ -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 diff --git a/data/BSD/BSD-4-Clause.yaml b/data/BSD/BSD-4-Clause.yaml deleted file mode 100644 index 2fd4a04..0000000 --- a/data/BSD/BSD-4-Clause.yaml +++ /dev/null @@ -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 diff --git a/data/BSD/BSD-Source-Code.yaml b/data/BSD/BSD-Source-Code.yaml deleted file mode 100644 index bce1257..0000000 --- a/data/BSD/BSD-Source-Code.yaml +++ /dev/null @@ -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 diff --git a/data/BSD/BSD.yaml b/data/BSD/BSD.yaml deleted file mode 100644 index 44484f5..0000000 --- a/data/BSD/BSD.yaml +++ /dev/null @@ -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 diff --git a/data/BSD/BSD_Protection.yaml b/data/BSD/BSD_Protection.yaml deleted file mode 100644 index ec6583e..0000000 --- a/data/BSD/BSD_Protection.yaml +++ /dev/null @@ -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 diff --git a/data/BSD/BSD_with_advertising.yaml b/data/BSD/BSD_with_advertising.yaml deleted file mode 100644 index 904c4d1..0000000 --- a/data/BSD/BSD_with_advertising.yaml +++ /dev/null @@ -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 diff --git a/data/BSD/BSD_with_attribution.yaml b/data/BSD/BSD_with_attribution.yaml deleted file mode 100644 index 19515e7..0000000 --- a/data/BSD/BSD_with_attribution.yaml +++ /dev/null @@ -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 diff --git a/data/BSD/FBSDDL.yaml b/data/BSD/FBSDDL.yaml deleted file mode 100644 index c7b8b4e..0000000 --- a/data/BSD/FBSDDL.yaml +++ /dev/null @@ -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 diff --git a/data/BSD/LBNL_BSD.yaml b/data/BSD/LBNL_BSD.yaml deleted file mode 100644 index 221dea6..0000000 --- a/data/BSD/LBNL_BSD.yaml +++ /dev/null @@ -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 diff --git a/data/BSD/RiceBSD.yaml b/data/BSD/RiceBSD.yaml deleted file mode 100644 index 365bce6..0000000 --- a/data/BSD/RiceBSD.yaml +++ /dev/null @@ -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 diff --git a/data/BSD/The_Asm_BSD_License.yaml b/data/BSD/The_Asm_BSD_License.yaml deleted file mode 100644 index f750a03..0000000 --- a/data/BSD/The_Asm_BSD_License.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -approved: yes -name: The Asm BSD License -url: http://asm.ow2.org/license.html diff --git a/data/BSD/The_BSD_License.yaml b/data/BSD/The_BSD_License.yaml deleted file mode 100644 index 20d5b08..0000000 --- a/data/BSD/The_BSD_License.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -approved: yes -name: The BSD License -url: http://repository.jboss.org/licenses/bsd.txt diff --git a/data/Baekmuk/Baekmuk.yaml b/data/Baekmuk/Baekmuk.yaml deleted file mode 100644 index ddf35fe..0000000 --- a/data/Baekmuk/Baekmuk.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Baekmuk -fedora_name: Baekmuk License -name: Baekmuk License -url: https://fedoraproject.org/wiki/Licensing/Baekmuk diff --git a/data/Bahyph/Bahyph.yaml b/data/Bahyph/Bahyph.yaml deleted file mode 100644 index b71ddd5..0000000 --- a/data/Bahyph/Bahyph.yaml +++ /dev/null @@ -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 diff --git a/data/Barr/Barr.yaml b/data/Barr/Barr.yaml deleted file mode 100644 index cd01dad..0000000 --- a/data/Barr/Barr.yaml +++ /dev/null @@ -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 diff --git a/data/BeOpen/BeOpen.yaml b/data/BeOpen/BeOpen.yaml deleted file mode 100644 index b4f4be4..0000000 --- a/data/BeOpen/BeOpen.yaml +++ /dev/null @@ -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 diff --git a/data/Beerware/Beerware.yaml b/data/Beerware/Beerware.yaml deleted file mode 100644 index e97abb3..0000000 --- a/data/Beerware/Beerware.yaml +++ /dev/null @@ -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 diff --git a/data/Bibtex/Bibtex.yaml b/data/Bibtex/Bibtex.yaml deleted file mode 100644 index 68a39f4..0000000 --- a/data/Bibtex/Bibtex.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Bibtex -fedora_name: Bibtex License -name: Bibtex License -url: https://fedoraproject.org/wiki/Licensing/Bibtex diff --git a/data/BitTorrent/BitTorrent-1.0.yaml b/data/BitTorrent/BitTorrent-1.0.yaml deleted file mode 100644 index 6718571..0000000 --- a/data/BitTorrent/BitTorrent-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/BitTorrent/BitTorrent.yaml b/data/BitTorrent/BitTorrent.yaml deleted file mode 100644 index 3816f50..0000000 --- a/data/BitTorrent/BitTorrent.yaml +++ /dev/null @@ -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 diff --git a/data/Bitstream/Bitstream_Vera.yaml b/data/Bitstream/Bitstream_Vera.yaml deleted file mode 100644 index 6c2ecab..0000000 --- a/data/Bitstream/Bitstream_Vera.yaml +++ /dev/null @@ -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 diff --git a/data/Boost/Boost.yaml b/data/Boost/Boost.yaml deleted file mode 100644 index 8e52ae1..0000000 --- a/data/Boost/Boost.yaml +++ /dev/null @@ -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 diff --git a/data/Borceux/Borceux.yaml b/data/Borceux/Borceux.yaml deleted file mode 100644 index 0c2d1a8..0000000 --- a/data/Borceux/Borceux.yaml +++ /dev/null @@ -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 diff --git a/data/Bouncy_Castle/Bouncy_Castle_Licence.yaml b/data/Bouncy_Castle/Bouncy_Castle_Licence.yaml deleted file mode 100644 index d79f6a1..0000000 --- a/data/Bouncy_Castle/Bouncy_Castle_Licence.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -approved: yes -name: Bouncy Castle Licence -url: http://www.bouncycastle.org/licence.html diff --git a/data/CATOSL/CATOSL.yaml b/data/CATOSL/CATOSL.yaml deleted file mode 100644 index c18045f..0000000 --- a/data/CATOSL/CATOSL.yaml +++ /dev/null @@ -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 diff --git a/data/CAcert/CACert_Root_Distribution_License.yaml b/data/CAcert/CACert_Root_Distribution_License.yaml deleted file mode 100644 index 3c1b1bc..0000000 --- a/data/CAcert/CACert_Root_Distribution_License.yaml +++ /dev/null @@ -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 diff --git a/data/CAcert/CAcert_Non-Related_Persons_Disclaimer_and_License.yaml b/data/CAcert/CAcert_Non-Related_Persons_Disclaimer_and_License.yaml deleted file mode 100644 index 110f4d9..0000000 --- a/data/CAcert/CAcert_Non-Related_Persons_Disclaimer_and_License.yaml +++ /dev/null @@ -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 diff --git a/data/CDDL/CDDL-1.0.yaml b/data/CDDL/CDDL-1.0.yaml deleted file mode 100644 index 326a94a..0000000 --- a/data/CDDL/CDDL-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/CDDL/CDDL-1.0_OR_GPL-2.0-with-classpath-exception.yaml b/data/CDDL/CDDL-1.0_OR_GPL-2.0-with-classpath-exception.yaml deleted file mode 100644 index 11abd3c..0000000 --- a/data/CDDL/CDDL-1.0_OR_GPL-2.0-with-classpath-exception.yaml +++ /dev/null @@ -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 diff --git a/data/CDDL/CDDL-1.1.yaml b/data/CDDL/CDDL-1.1.yaml deleted file mode 100644 index d04115d..0000000 --- a/data/CDDL/CDDL-1.1.yaml +++ /dev/null @@ -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 diff --git a/data/CDDL/Dual_license_consisting_of_the_CDDL_v1.1_and_GPL_v2.yaml b/data/CDDL/Dual_license_consisting_of_the_CDDL_v1.1_and_GPL_v2.yaml deleted file mode 100644 index 8fb5e82..0000000 --- a/data/CDDL/Dual_license_consisting_of_the_CDDL_v1.1_and_GPL_v2.yaml +++ /dev/null @@ -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 diff --git a/data/CECILL/CECILL-1.0.yaml b/data/CECILL/CECILL-1.0.yaml deleted file mode 100644 index f77d799..0000000 --- a/data/CECILL/CECILL-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/CECILL/CECILL-2.1.yaml b/data/CECILL/CECILL-2.1.yaml deleted file mode 100644 index 0211ead..0000000 --- a/data/CECILL/CECILL-2.1.yaml +++ /dev/null @@ -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 diff --git a/data/CNRI/CNRI-Jython.yaml b/data/CNRI/CNRI-Jython.yaml deleted file mode 100644 index 2a90397..0000000 --- a/data/CNRI/CNRI-Jython.yaml +++ /dev/null @@ -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 diff --git a/data/CNRI/CNRI-Python-GPL-Compatible.yaml b/data/CNRI/CNRI-Python-GPL-Compatible.yaml deleted file mode 100644 index 6980dda..0000000 --- a/data/CNRI/CNRI-Python-GPL-Compatible.yaml +++ /dev/null @@ -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/ diff --git a/data/CNRI/CNRI.yaml b/data/CNRI/CNRI.yaml deleted file mode 100644 index e99e4bc..0000000 --- a/data/CNRI/CNRI.yaml +++ /dev/null @@ -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 diff --git a/data/CPAL/CPAL.yaml b/data/CPAL/CPAL.yaml deleted file mode 100644 index 6a14f86..0000000 --- a/data/CPAL/CPAL.yaml +++ /dev/null @@ -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 diff --git a/data/CPL/CPL.yaml b/data/CPL/CPL.yaml deleted file mode 100644 index 47c4c6b..0000000 --- a/data/CPL/CPL.yaml +++ /dev/null @@ -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 diff --git a/data/CPM/CPM.yaml b/data/CPM/CPM.yaml deleted file mode 100644 index e1dcb97..0000000 --- a/data/CPM/CPM.yaml +++ /dev/null @@ -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 diff --git a/data/CPOL/CPOL-1.02.yaml b/data/CPOL/CPOL-1.02.yaml deleted file mode 100644 index 0ba79c7..0000000 --- a/data/CPOL/CPOL-1.02.yaml +++ /dev/null @@ -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 diff --git a/data/CRC32/CRC32.yaml b/data/CRC32/CRC32.yaml deleted file mode 100644 index 710876f..0000000 --- a/data/CRC32/CRC32.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: CRC32 -fedora_name: CRC32 License -name: CRC32 License -url: https://fedoraproject.org/wiki/Licensing/CRC32 diff --git a/data/C_Migemo/C_Migemo_License.yaml b/data/C_Migemo/C_Migemo_License.yaml deleted file mode 100644 index 43205ae..0000000 --- a/data/C_Migemo/C_Migemo_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: C/Migemo License -name: C/Migemo License -url: https://fedoraproject.org/wiki/Licensing/CMigemo diff --git a/data/Caldera/Caldera.yaml b/data/Caldera/Caldera.yaml deleted file mode 100644 index 33bb6e1..0000000 --- a/data/Caldera/Caldera.yaml +++ /dev/null @@ -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 diff --git a/data/CeCILL/CeCILL-B.yaml b/data/CeCILL/CeCILL-B.yaml deleted file mode 100644 index aa3ae30..0000000 --- a/data/CeCILL/CeCILL-B.yaml +++ /dev/null @@ -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 diff --git a/data/CeCILL/CeCILL-C.yaml b/data/CeCILL/CeCILL-C.yaml deleted file mode 100644 index bc10986..0000000 --- a/data/CeCILL/CeCILL-C.yaml +++ /dev/null @@ -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 diff --git a/data/CeCILL/CeCILL.yaml b/data/CeCILL/CeCILL.yaml deleted file mode 100644 index 41a87a3..0000000 --- a/data/CeCILL/CeCILL.yaml +++ /dev/null @@ -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 diff --git a/data/Charter/Charter.yaml b/data/Charter/Charter.yaml deleted file mode 100644 index 78dacca..0000000 --- a/data/Charter/Charter.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Charter -fedora_name: Charter License -name: Charter License -url: https://fedoraproject.org/wiki/Licensing/Charter diff --git a/data/Commons_Clause/Commons_Clause.yaml b/data/Commons_Clause/Commons_Clause.yaml deleted file mode 100644 index 455091d..0000000 --- a/data/Commons_Clause/Commons_Clause.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -approved: no -name: Commons Clause -url: https://fedoraproject.org/wiki/Licensing/CommonsClause diff --git a/data/Condor/Condor-1.1.yaml b/data/Condor/Condor-1.1.yaml deleted file mode 100644 index 95560af..0000000 --- a/data/Condor/Condor-1.1.yaml +++ /dev/null @@ -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 diff --git a/data/Condor/Condor.yaml b/data/Condor/Condor.yaml deleted file mode 100644 index 7064344..0000000 --- a/data/Condor/Condor.yaml +++ /dev/null @@ -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 diff --git a/data/Copyright/Copyright_only.yaml b/data/Copyright/Copyright_only.yaml deleted file mode 100644 index 148f150..0000000 --- a/data/Copyright/Copyright_only.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-1.0.yaml b/data/Creative_Commons/CC-BY-1.0.yaml deleted file mode 100644 index 2bc36e2..0000000 --- a/data/Creative_Commons/CC-BY-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-2.0.yaml b/data/Creative_Commons/CC-BY-2.0.yaml deleted file mode 100644 index d27d766..0000000 --- a/data/Creative_Commons/CC-BY-2.0.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-2.5.yaml b/data/Creative_Commons/CC-BY-2.5.yaml deleted file mode 100644 index 023f44a..0000000 --- a/data/Creative_Commons/CC-BY-2.5.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-4.0.yaml b/data/Creative_Commons/CC-BY-4.0.yaml deleted file mode 100644 index d832db0..0000000 --- a/data/Creative_Commons/CC-BY-4.0.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-NC-1.0.yaml b/data/Creative_Commons/CC-BY-NC-1.0.yaml deleted file mode 100644 index ecd9b6b..0000000 --- a/data/Creative_Commons/CC-BY-NC-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-NC-2.0.yaml b/data/Creative_Commons/CC-BY-NC-2.0.yaml deleted file mode 100644 index c62f0b4..0000000 --- a/data/Creative_Commons/CC-BY-NC-2.0.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-NC-2.5.yaml b/data/Creative_Commons/CC-BY-NC-2.5.yaml deleted file mode 100644 index 42e6c76..0000000 --- a/data/Creative_Commons/CC-BY-NC-2.5.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-NC-3.0.yaml b/data/Creative_Commons/CC-BY-NC-3.0.yaml deleted file mode 100644 index 44ea5ac..0000000 --- a/data/Creative_Commons/CC-BY-NC-3.0.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-NC-4.0.yaml b/data/Creative_Commons/CC-BY-NC-4.0.yaml deleted file mode 100644 index 5ffff99..0000000 --- a/data/Creative_Commons/CC-BY-NC-4.0.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-NC-ND-1.0.yaml b/data/Creative_Commons/CC-BY-NC-ND-1.0.yaml deleted file mode 100644 index ed1cc73..0000000 --- a/data/Creative_Commons/CC-BY-NC-ND-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-NC-ND-2.0.yaml b/data/Creative_Commons/CC-BY-NC-ND-2.0.yaml deleted file mode 100644 index a015370..0000000 --- a/data/Creative_Commons/CC-BY-NC-ND-2.0.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-NC-ND-2.5.yaml b/data/Creative_Commons/CC-BY-NC-ND-2.5.yaml deleted file mode 100644 index 46d7b6d..0000000 --- a/data/Creative_Commons/CC-BY-NC-ND-2.5.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-NC-ND-3.0.yaml b/data/Creative_Commons/CC-BY-NC-ND-3.0.yaml deleted file mode 100644 index f388b63..0000000 --- a/data/Creative_Commons/CC-BY-NC-ND-3.0.yaml +++ /dev/null @@ -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/ diff --git a/data/Creative_Commons/CC-BY-NC-ND-4.0.yaml b/data/Creative_Commons/CC-BY-NC-ND-4.0.yaml deleted file mode 100644 index 6478bba..0000000 --- a/data/Creative_Commons/CC-BY-NC-ND-4.0.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-NC-SA-1.0.yaml b/data/Creative_Commons/CC-BY-NC-SA-1.0.yaml deleted file mode 100644 index 40a4d33..0000000 --- a/data/Creative_Commons/CC-BY-NC-SA-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-NC-SA-2.0.yaml b/data/Creative_Commons/CC-BY-NC-SA-2.0.yaml deleted file mode 100644 index 983d034..0000000 --- a/data/Creative_Commons/CC-BY-NC-SA-2.0.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-NC-SA-2.5.yaml b/data/Creative_Commons/CC-BY-NC-SA-2.5.yaml deleted file mode 100644 index 6511820..0000000 --- a/data/Creative_Commons/CC-BY-NC-SA-2.5.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-NC-SA-3.0.yaml b/data/Creative_Commons/CC-BY-NC-SA-3.0.yaml deleted file mode 100644 index 98b4a11..0000000 --- a/data/Creative_Commons/CC-BY-NC-SA-3.0.yaml +++ /dev/null @@ -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/ diff --git a/data/Creative_Commons/CC-BY-NC-SA-4.0.yaml b/data/Creative_Commons/CC-BY-NC-SA-4.0.yaml deleted file mode 100644 index a006ace..0000000 --- a/data/Creative_Commons/CC-BY-NC-SA-4.0.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-ND-1.0.yaml b/data/Creative_Commons/CC-BY-ND-1.0.yaml deleted file mode 100644 index e33594f..0000000 --- a/data/Creative_Commons/CC-BY-ND-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-ND-2.0.yaml b/data/Creative_Commons/CC-BY-ND-2.0.yaml deleted file mode 100644 index afe852b..0000000 --- a/data/Creative_Commons/CC-BY-ND-2.0.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-ND-2.5.yaml b/data/Creative_Commons/CC-BY-ND-2.5.yaml deleted file mode 100644 index 4325971..0000000 --- a/data/Creative_Commons/CC-BY-ND-2.5.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-ND-4.0.yaml b/data/Creative_Commons/CC-BY-ND-4.0.yaml deleted file mode 100644 index 542bb4b..0000000 --- a/data/Creative_Commons/CC-BY-ND-4.0.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-ND.yaml b/data/Creative_Commons/CC-BY-ND.yaml deleted file mode 100644 index 1896506..0000000 --- a/data/Creative_Commons/CC-BY-ND.yaml +++ /dev/null @@ -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/ diff --git a/data/Creative_Commons/CC-BY-SA-1.0.yaml b/data/Creative_Commons/CC-BY-SA-1.0.yaml deleted file mode 100644 index 16cc247..0000000 --- a/data/Creative_Commons/CC-BY-SA-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-SA-2.0.yaml b/data/Creative_Commons/CC-BY-SA-2.0.yaml deleted file mode 100644 index 6daf852..0000000 --- a/data/Creative_Commons/CC-BY-SA-2.0.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-SA-2.5.yaml b/data/Creative_Commons/CC-BY-SA-2.5.yaml deleted file mode 100644 index 0db4e98..0000000 --- a/data/Creative_Commons/CC-BY-SA-2.5.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-SA-4.0.yaml b/data/Creative_Commons/CC-BY-SA-4.0.yaml deleted file mode 100644 index 247bda9..0000000 --- a/data/Creative_Commons/CC-BY-SA-4.0.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/CC-BY-SA.yaml b/data/Creative_Commons/CC-BY-SA.yaml deleted file mode 100644 index 9fa5496..0000000 --- a/data/Creative_Commons/CC-BY-SA.yaml +++ /dev/null @@ -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/ diff --git a/data/Creative_Commons/CC-BY.yaml b/data/Creative_Commons/CC-BY.yaml deleted file mode 100644 index 71f7888..0000000 --- a/data/Creative_Commons/CC-BY.yaml +++ /dev/null @@ -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/ diff --git a/data/Creative_Commons/CC0.yaml b/data/Creative_Commons/CC0.yaml deleted file mode 100644 index a2be643..0000000 --- a/data/Creative_Commons/CC0.yaml +++ /dev/null @@ -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 diff --git a/data/Creative_Commons/Creative_Commons_Sampling_Plus_1.0.yaml b/data/Creative_Commons/Creative_Commons_Sampling_Plus_1.0.yaml deleted file mode 100644 index 6d326a6..0000000 --- a/data/Creative_Commons/Creative_Commons_Sampling_Plus_1.0.yaml +++ /dev/null @@ -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 diff --git a/data/Crossword/Crossword.yaml b/data/Crossword/Crossword.yaml deleted file mode 100644 index 1b2a0a1..0000000 --- a/data/Crossword/Crossword.yaml +++ /dev/null @@ -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 diff --git a/data/Crystal_Stacker/Crystal_Stacker.yaml b/data/Crystal_Stacker/Crystal_Stacker.yaml deleted file mode 100644 index fd6e82c..0000000 --- a/data/Crystal_Stacker/Crystal_Stacker.yaml +++ /dev/null @@ -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 diff --git a/data/Cube/Cube.yaml b/data/Cube/Cube.yaml deleted file mode 100644 index 0886bf2..0000000 --- a/data/Cube/Cube.yaml +++ /dev/null @@ -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 diff --git a/data/DIP_SIPA/DIP_SIPA_Font_License.yaml b/data/DIP_SIPA/DIP_SIPA_Font_License.yaml deleted file mode 100644 index b398b4e..0000000 --- a/data/DIP_SIPA/DIP_SIPA_Font_License.yaml +++ /dev/null @@ -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 diff --git a/data/DMTF/DMTF.yaml b/data/DMTF/DMTF.yaml deleted file mode 100644 index 9c40269..0000000 --- a/data/DMTF/DMTF.yaml +++ /dev/null @@ -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 diff --git a/data/DOC/DOC.yaml b/data/DOC/DOC.yaml deleted file mode 100644 index 5c022e2..0000000 --- a/data/DOC/DOC.yaml +++ /dev/null @@ -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 diff --git a/data/DSDP/DSDP.yaml b/data/DSDP/DSDP.yaml deleted file mode 100644 index 93b83ed..0000000 --- a/data/DSDP/DSDP.yaml +++ /dev/null @@ -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 diff --git a/data/DSL/DSL.yaml b/data/DSL/DSL.yaml deleted file mode 100644 index 2dae52f..0000000 --- a/data/DSL/DSL.yaml +++ /dev/null @@ -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 diff --git a/data/DWPL/DWPL.yaml b/data/DWPL/DWPL.yaml deleted file mode 100644 index 2678b5e..0000000 --- a/data/DWPL/DWPL.yaml +++ /dev/null @@ -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 diff --git a/data/Distributable/Distributable.yaml b/data/Distributable/Distributable.yaml deleted file mode 100644 index 4db3401..0000000 --- a/data/Distributable/Distributable.yaml +++ /dev/null @@ -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 diff --git a/data/Dom4j/The_Dom4j_License.yaml b/data/Dom4j/The_Dom4j_License.yaml deleted file mode 100644 index b93c3da..0000000 --- a/data/Dom4j/The_Dom4j_License.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -approved: yes -name: The Dom4j License -url: https://raw.githubusercontent.com/dom4j/dom4j/master/LICENSE diff --git a/data/Dotseqn/Dotseqn.yaml b/data/Dotseqn/Dotseqn.yaml deleted file mode 100644 index a17e8dc..0000000 --- a/data/Dotseqn/Dotseqn.yaml +++ /dev/null @@ -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 diff --git a/data/DoubleStroke/DoubleStroke.yaml b/data/DoubleStroke/DoubleStroke.yaml deleted file mode 100644 index 9fdd257..0000000 --- a/data/DoubleStroke/DoubleStroke.yaml +++ /dev/null @@ -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 diff --git a/data/ECL/ECL_1.0.yaml b/data/ECL/ECL_1.0.yaml deleted file mode 100644 index 72e8ab5..0000000 --- a/data/ECL/ECL_1.0.yaml +++ /dev/null @@ -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 diff --git a/data/ECL/ECL_2.0.yaml b/data/ECL/ECL_2.0.yaml deleted file mode 100644 index 568b2ba..0000000 --- a/data/ECL/ECL_2.0.yaml +++ /dev/null @@ -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 diff --git a/data/EFF/OAL.yaml b/data/EFF/OAL.yaml deleted file mode 100644 index cab6eda..0000000 --- a/data/EFF/OAL.yaml +++ /dev/null @@ -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 diff --git a/data/EFML/EFML.yaml b/data/EFML/EFML.yaml deleted file mode 100644 index c4e4d42..0000000 --- a/data/EFML/EFML.yaml +++ /dev/null @@ -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 diff --git a/data/EMC2/EMC2_License.yaml b/data/EMC2/EMC2_License.yaml deleted file mode 100644 index b6f6d67..0000000 --- a/data/EMC2/EMC2_License.yaml +++ /dev/null @@ -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 diff --git a/data/EPICS/EPICS.yaml b/data/EPICS/EPICS.yaml deleted file mode 100644 index c85242a..0000000 --- a/data/EPICS/EPICS.yaml +++ /dev/null @@ -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 diff --git a/data/EU/EUPL-1.0.yaml b/data/EU/EUPL-1.0.yaml deleted file mode 100644 index 5315090..0000000 --- a/data/EU/EUPL-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/EU/EUPL_1.1.yaml b/data/EU/EUPL_1.1.yaml deleted file mode 100644 index a166303..0000000 --- a/data/EU/EUPL_1.1.yaml +++ /dev/null @@ -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 diff --git a/data/EU/EU_Datagrid.yaml b/data/EU/EU_Datagrid.yaml deleted file mode 100644 index 99dc154..0000000 --- a/data/EU/EU_Datagrid.yaml +++ /dev/null @@ -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 diff --git a/data/Eclipse/EPL-1.0.yaml b/data/Eclipse/EPL-1.0.yaml deleted file mode 100644 index 38e1966..0000000 --- a/data/Eclipse/EPL-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/Eclipse/EPL-2.0.yaml b/data/Eclipse/EPL-2.0.yaml deleted file mode 100644 index dcf54a2..0000000 --- a/data/Eclipse/EPL-2.0.yaml +++ /dev/null @@ -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 diff --git a/data/Eiffel/EFL-1.0.yaml b/data/Eiffel/EFL-1.0.yaml deleted file mode 100644 index 842eb41..0000000 --- a/data/Eiffel/EFL-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/Eiffel/EFL_2.0.yaml b/data/Eiffel/EFL_2.0.yaml deleted file mode 100644 index fd28d7d..0000000 --- a/data/Eiffel/EFL_2.0.yaml +++ /dev/null @@ -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 diff --git a/data/Elvish/Elvish.yaml b/data/Elvish/Elvish.yaml deleted file mode 100644 index bed3eb6..0000000 --- a/data/Elvish/Elvish.yaml +++ /dev/null @@ -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 diff --git a/data/Entessa/Entessa.yaml b/data/Entessa/Entessa.yaml deleted file mode 100644 index 7c61682..0000000 --- a/data/Entessa/Entessa.yaml +++ /dev/null @@ -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 diff --git a/data/Erlang/ERPL.yaml b/data/Erlang/ERPL.yaml deleted file mode 100644 index 60d5c54..0000000 --- a/data/Erlang/ERPL.yaml +++ /dev/null @@ -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 diff --git a/data/Eurosym/Eurosym.yaml b/data/Eurosym/Eurosym.yaml deleted file mode 100644 index 7edbdbe..0000000 --- a/data/Eurosym/Eurosym.yaml +++ /dev/null @@ -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 diff --git a/data/FTL/FTL.yaml b/data/FTL/FTL.yaml deleted file mode 100644 index b794309..0000000 --- a/data/FTL/FTL.yaml +++ /dev/null @@ -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 diff --git a/data/Fair/Fair.yaml b/data/Fair/Fair.yaml deleted file mode 100644 index dd5e33a..0000000 --- a/data/Fair/Fair.yaml +++ /dev/null @@ -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 diff --git a/data/Firmware/Firmware.yaml b/data/Firmware/Firmware.yaml deleted file mode 100644 index 6dd060f..0000000 --- a/data/Firmware/Firmware.yaml +++ /dev/null @@ -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 diff --git a/data/Frameworx/Frameworx-1.0.yaml b/data/Frameworx/Frameworx-1.0.yaml deleted file mode 100644 index c23120b..0000000 --- a/data/Frameworx/Frameworx-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/Fraunhofer/FDK-AAC.yaml b/data/Fraunhofer/FDK-AAC.yaml deleted file mode 100644 index 1a09d90..0000000 --- a/data/Fraunhofer/FDK-AAC.yaml +++ /dev/null @@ -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 diff --git a/data/Free_Art/Free_Art.yaml b/data/Free_Art/Free_Art.yaml deleted file mode 100644 index 95d8b7f..0000000 --- a/data/Free_Art/Free_Art.yaml +++ /dev/null @@ -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 diff --git a/data/GL2PS/GL2PS.yaml b/data/GL2PS/GL2PS.yaml deleted file mode 100644 index 7675c85..0000000 --- a/data/GL2PS/GL2PS.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/AGPL-3.0.yaml b/data/GNU/AGPL-3.0.yaml deleted file mode 100644 index ee1fe5e..0000000 --- a/data/GNU/AGPL-3.0.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/AGPLv1.yaml b/data/GNU/AGPLv1.yaml deleted file mode 100644 index fbc098e..0000000 --- a/data/GNU/AGPLv1.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/AGPLv3+.yaml b/data/GNU/AGPLv3+.yaml deleted file mode 100644 index 42e999b..0000000 --- a/data/GNU/AGPLv3+.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/AGPLv3.yaml b/data/GNU/AGPLv3.yaml deleted file mode 100644 index afdea02..0000000 --- a/data/GNU/AGPLv3.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/AGPLv3_with_exceptions.yaml b/data/GNU/AGPLv3_with_exceptions.yaml deleted file mode 100644 index 5e4d6b3..0000000 --- a/data/GNU/AGPLv3_with_exceptions.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/FSFAP.yaml b/data/GNU/FSFAP.yaml deleted file mode 100644 index e750b8a..0000000 --- a/data/GNU/FSFAP.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/FSFUL.yaml b/data/GNU/FSFUL.yaml deleted file mode 100644 index 34d0476..0000000 --- a/data/GNU/FSFUL.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/FSFULLR.yaml b/data/GNU/FSFULLR.yaml deleted file mode 100644 index 93db089..0000000 --- a/data/GNU/FSFULLR.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/GFDL-1.1.yaml b/data/GNU/GFDL-1.1.yaml deleted file mode 100644 index 62af6af..0000000 --- a/data/GNU/GFDL-1.1.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/GFDL-1.2.yaml b/data/GNU/GFDL-1.2.yaml deleted file mode 100644 index 46c2354..0000000 --- a/data/GNU/GFDL-1.2.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/GFDL.yaml b/data/GNU/GFDL.yaml deleted file mode 100644 index 7f78326..0000000 --- a/data/GNU/GFDL.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/GPL+.yaml b/data/GNU/GPL+.yaml deleted file mode 100644 index 5736a3b..0000000 --- a/data/GNU/GPL+.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/GPL+_or_Artistic.yaml b/data/GNU/GPL+_or_Artistic.yaml deleted file mode 100644 index 81f06b1..0000000 --- a/data/GNU/GPL+_or_Artistic.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: GPL+ or Artistic -fedora_name: Perl License -name: Perl License -url: http://dev.perl.org/licenses/ diff --git a/data/GNU/GPL+_with_exceptions.yaml b/data/GNU/GPL+_with_exceptions.yaml deleted file mode 100644 index e593834..0000000 --- a/data/GNU/GPL+_with_exceptions.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/GPL-2.0-with-GCC-exception.yaml b/data/GNU/GPL-2.0-with-GCC-exception.yaml deleted file mode 100644 index 9d8a048..0000000 --- a/data/GNU/GPL-2.0-with-GCC-exception.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/GPL-2.0-with-autoconf-exception.yaml b/data/GNU/GPL-2.0-with-autoconf-exception.yaml deleted file mode 100644 index be9a852..0000000 --- a/data/GNU/GPL-2.0-with-autoconf-exception.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/GPL-2.0-with-bison-exception.yaml b/data/GNU/GPL-2.0-with-bison-exception.yaml deleted file mode 100644 index 5713d9c..0000000 --- a/data/GNU/GPL-2.0-with-bison-exception.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/GPL-3.0-with-GCC-exception.yaml b/data/GNU/GPL-3.0-with-GCC-exception.yaml deleted file mode 100644 index aeeafb6..0000000 --- a/data/GNU/GPL-3.0-with-GCC-exception.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/GPL-3.0-with-autoconf-exception.yaml b/data/GNU/GPL-3.0-with-autoconf-exception.yaml deleted file mode 100644 index 2a57005..0000000 --- a/data/GNU/GPL-3.0-with-autoconf-exception.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/GPL_for_Computer_Programs_of_the_Public_Administration.yaml b/data/GNU/GPL_for_Computer_Programs_of_the_Public_Administration.yaml deleted file mode 100644 index 1d684f8..0000000 --- a/data/GNU/GPL_for_Computer_Programs_of_the_Public_Administration.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/GPLv1.yaml b/data/GNU/GPLv1.yaml deleted file mode 100644 index 345c6bc..0000000 --- a/data/GNU/GPLv1.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/GPLv2+.yaml b/data/GNU/GPLv2+.yaml deleted file mode 100644 index 583f594..0000000 --- a/data/GNU/GPLv2+.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/GPLv2+_with_exceptions.yaml b/data/GNU/GPLv2+_with_exceptions.yaml deleted file mode 100644 index c9416af..0000000 --- a/data/GNU/GPLv2+_with_exceptions.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/GPLv2.yaml b/data/GNU/GPLv2.yaml deleted file mode 100644 index f77f323..0000000 --- a/data/GNU/GPLv2.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/GPLv2_with_exceptions.yaml b/data/GNU/GPLv2_with_exceptions.yaml deleted file mode 100644 index 1f69202..0000000 --- a/data/GNU/GPLv2_with_exceptions.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/GPLv3+.yaml b/data/GNU/GPLv3+.yaml deleted file mode 100644 index 4b05549..0000000 --- a/data/GNU/GPLv3+.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/GPLv3+_with_exceptions.yaml b/data/GNU/GPLv3+_with_exceptions.yaml deleted file mode 100644 index 7a37137..0000000 --- a/data/GNU/GPLv3+_with_exceptions.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/GPLv3.yaml b/data/GNU/GPLv3.yaml deleted file mode 100644 index dad40b1..0000000 --- a/data/GNU/GPLv3.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/GPLv3_with_exceptions.yaml b/data/GNU/GPLv3_with_exceptions.yaml deleted file mode 100644 index d9633bc..0000000 --- a/data/GNU/GPLv3_with_exceptions.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/LGPL-2.0+.yaml b/data/GNU/LGPL-2.0+.yaml deleted file mode 100644 index 7e5cfef..0000000 --- a/data/GNU/LGPL-2.0+.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/LGPL-2.0.yaml b/data/GNU/LGPL-2.0.yaml deleted file mode 100644 index 345e3d0..0000000 --- a/data/GNU/LGPL-2.0.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/LGPL-2.1+.yaml b/data/GNU/LGPL-2.1+.yaml deleted file mode 100644 index e8f0062..0000000 --- a/data/GNU/LGPL-2.1+.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/LGPL-2.1.yaml b/data/GNU/LGPL-2.1.yaml deleted file mode 100644 index cd9b94b..0000000 --- a/data/GNU/LGPL-2.1.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/LGPLLR.yaml b/data/GNU/LGPLLR.yaml deleted file mode 100644 index 8b8ca50..0000000 --- a/data/GNU/LGPLLR.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/LGPLv2+.yaml b/data/GNU/LGPLv2+.yaml deleted file mode 100644 index 53f0b95..0000000 --- a/data/GNU/LGPLv2+.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/LGPLv2+_or_Artistic.yaml b/data/GNU/LGPLv2+_or_Artistic.yaml deleted file mode 100644 index 025ffa2..0000000 --- a/data/GNU/LGPLv2+_or_Artistic.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: yes -fedora_abbrev: LGPLv2+ or Artistic -fedora_name: Perl License (variant) -name: Perl License (variant) diff --git a/data/GNU/LGPLv2+_with_exceptions.yaml b/data/GNU/LGPLv2+_with_exceptions.yaml deleted file mode 100644 index 917d4e3..0000000 --- a/data/GNU/LGPLv2+_with_exceptions.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/LGPLv2.yaml b/data/GNU/LGPLv2.yaml deleted file mode 100644 index 2054cea..0000000 --- a/data/GNU/LGPLv2.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/LGPLv2_with_exceptions.yaml b/data/GNU/LGPLv2_with_exceptions.yaml deleted file mode 100644 index a631e6f..0000000 --- a/data/GNU/LGPLv2_with_exceptions.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/LGPLv3+.yaml b/data/GNU/LGPLv3+.yaml deleted file mode 100644 index ad80ac1..0000000 --- a/data/GNU/LGPLv3+.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/LGPLv3+_with_exceptions.yaml b/data/GNU/LGPLv3+_with_exceptions.yaml deleted file mode 100644 index d973b3b..0000000 --- a/data/GNU/LGPLv3+_with_exceptions.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/LGPLv3.yaml b/data/GNU/LGPLv3.yaml deleted file mode 100644 index 10281e1..0000000 --- a/data/GNU/LGPLv3.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/LGPLv3_with_exceptions.yaml b/data/GNU/LGPLv3_with_exceptions.yaml deleted file mode 100644 index 039fcbb..0000000 --- a/data/GNU/LGPLv3_with_exceptions.yaml +++ /dev/null @@ -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 diff --git a/data/GNU/OFSFDL.yaml b/data/GNU/OFSFDL.yaml deleted file mode 100644 index c5f9158..0000000 --- a/data/GNU/OFSFDL.yaml +++ /dev/null @@ -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 diff --git a/data/GeoGratis/GeoGratis.yaml b/data/GeoGratis/GeoGratis.yaml deleted file mode 100644 index c3f33c3..0000000 --- a/data/GeoGratis/GeoGratis.yaml +++ /dev/null @@ -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 diff --git a/data/Germany/D-FSL-1.0.yaml b/data/Germany/D-FSL-1.0.yaml deleted file mode 100644 index e225bbd..0000000 --- a/data/Germany/D-FSL-1.0.yaml +++ /dev/null @@ -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/ diff --git a/data/Germany/DL-DE-BY.yaml b/data/Germany/DL-DE-BY.yaml deleted file mode 100644 index 601c9ec..0000000 --- a/data/Germany/DL-DE-BY.yaml +++ /dev/null @@ -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 diff --git a/data/Giftware/Giftware.yaml b/data/Giftware/Giftware.yaml deleted file mode 100644 index d56d335..0000000 --- a/data/Giftware/Giftware.yaml +++ /dev/null @@ -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 diff --git a/data/Glide/Glide.yaml b/data/Glide/Glide.yaml deleted file mode 100644 index 62d4e63..0000000 --- a/data/Glide/Glide.yaml +++ /dev/null @@ -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 diff --git a/data/Glulxe/Glulxe.yaml b/data/Glulxe/Glulxe.yaml deleted file mode 100644 index 0d875c5..0000000 --- a/data/Glulxe/Glulxe.yaml +++ /dev/null @@ -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 diff --git a/data/H2/H2_License,_Version_1.0.yaml b/data/H2/H2_License,_Version_1.0.yaml deleted file mode 100644 index 510c8b6..0000000 --- a/data/H2/H2_License,_Version_1.0.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -approved: yes -name: H2 License, Version 1.0 -url: http://repository.jboss.org/licenses/h2.txt diff --git a/data/HOFL/HOFL.yaml b/data/HOFL/HOFL.yaml deleted file mode 100644 index 157e21d..0000000 --- a/data/HOFL/HOFL.yaml +++ /dev/null @@ -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 diff --git a/data/HP/HP_Software_License_Terms.yaml b/data/HP/HP_Software_License_Terms.yaml deleted file mode 100644 index 9bbab25..0000000 --- a/data/HP/HP_Software_License_Terms.yaml +++ /dev/null @@ -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 diff --git a/data/HSRL/HSRL.yaml b/data/HSRL/HSRL.yaml deleted file mode 100644 index 71395b4..0000000 --- a/data/HSRL/HSRL.yaml +++ /dev/null @@ -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 diff --git a/data/Hacktivismo/Hacktivismo_Enhanced-Source_Software_License_Agreement.yaml b/data/Hacktivismo/Hacktivismo_Enhanced-Source_Software_License_Agreement.yaml deleted file mode 100644 index 8543a7e..0000000 --- a/data/Hacktivismo/Hacktivismo_Enhanced-Source_Software_License_Agreement.yaml +++ /dev/null @@ -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 diff --git a/data/Haskell/HaskellReport.yaml b/data/Haskell/HaskellReport.yaml deleted file mode 100644 index 31bf9cc..0000000 --- a/data/Haskell/HaskellReport.yaml +++ /dev/null @@ -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 diff --git a/data/Helix_DNA_Technology/Helix_DNA_Technology_Binary_Research_Use_License.yaml b/data/Helix_DNA_Technology/Helix_DNA_Technology_Binary_Research_Use_License.yaml deleted file mode 100644 index 0a80187..0000000 --- a/data/Helix_DNA_Technology/Helix_DNA_Technology_Binary_Research_Use_License.yaml +++ /dev/null @@ -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/ diff --git a/data/Hershey/Hershey.yaml b/data/Hershey/Hershey.yaml deleted file mode 100644 index 2e5e372..0000000 --- a/data/Hershey/Hershey.yaml +++ /dev/null @@ -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 diff --git a/data/IBM/IBM-pibs.yaml b/data/IBM/IBM-pibs.yaml deleted file mode 100644 index f2640db..0000000 --- a/data/IBM/IBM-pibs.yaml +++ /dev/null @@ -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 diff --git a/data/IBM/IBM.yaml b/data/IBM/IBM.yaml deleted file mode 100644 index 240d307..0000000 --- a/data/IBM/IBM.yaml +++ /dev/null @@ -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 diff --git a/data/IBM/IBM_Sample_Code_License.yaml b/data/IBM/IBM_Sample_Code_License.yaml deleted file mode 100644 index ba36193..0000000 --- a/data/IBM/IBM_Sample_Code_License.yaml +++ /dev/null @@ -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 diff --git a/data/ICU/ICU.yaml b/data/ICU/ICU.yaml deleted file mode 100644 index c2d6170..0000000 --- a/data/ICU/ICU.yaml +++ /dev/null @@ -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 diff --git a/data/ICU/ICU_License_ICU_58_and_later.yaml b/data/ICU/ICU_License_ICU_58_and_later.yaml deleted file mode 100644 index 54e4d00..0000000 --- a/data/ICU/ICU_License_ICU_58_and_later.yaml +++ /dev/null @@ -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 diff --git a/data/IEEE/IEEE.yaml b/data/IEEE/IEEE.yaml deleted file mode 100644 index 36eaa7d..0000000 --- a/data/IEEE/IEEE.yaml +++ /dev/null @@ -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 diff --git a/data/IJG/IJG.yaml b/data/IJG/IJG.yaml deleted file mode 100644 index 3a0b270..0000000 --- a/data/IJG/IJG.yaml +++ /dev/null @@ -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 diff --git a/data/IPA/IPA.yaml b/data/IPA/IPA.yaml deleted file mode 100644 index b25e249..0000000 --- a/data/IPA/IPA.yaml +++ /dev/null @@ -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 diff --git a/data/ISC/ISC.yaml b/data/ISC/ISC.yaml deleted file mode 100644 index ea4dc45..0000000 --- a/data/ISC/ISC.yaml +++ /dev/null @@ -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/ diff --git a/data/ImageMagick/ImageMagick.yaml b/data/ImageMagick/ImageMagick.yaml deleted file mode 100644 index e2f9304..0000000 --- a/data/ImageMagick/ImageMagick.yaml +++ /dev/null @@ -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 diff --git a/data/Imlib2/Imlib2.yaml b/data/Imlib2/Imlib2.yaml deleted file mode 100644 index 14b9e8a..0000000 --- a/data/Imlib2/Imlib2.yaml +++ /dev/null @@ -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 diff --git a/data/Indiana_University/Indiana_University_Extreme_Lab_Software_License_1.1.1.yaml b/data/Indiana_University/Indiana_University_Extreme_Lab_Software_License_1.1.1.yaml deleted file mode 100644 index 000cabf..0000000 --- a/data/Indiana_University/Indiana_University_Extreme_Lab_Software_License_1.1.1.yaml +++ /dev/null @@ -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 diff --git a/data/Indiana_University/Indiana_University_Extreme_Lab_Software_License_Version_1.1.1.yaml b/data/Indiana_University/Indiana_University_Extreme_Lab_Software_License_Version_1.1.1.yaml deleted file mode 100644 index 23821ad..0000000 --- a/data/Indiana_University/Indiana_University_Extreme_Lab_Software_License_Version_1.1.1.yaml +++ /dev/null @@ -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 diff --git a/data/Indiana_University/indiana-extreme.yaml b/data/Indiana_University/indiana-extreme.yaml deleted file mode 100644 index 48b9446..0000000 --- a/data/Indiana_University/indiana-extreme.yaml +++ /dev/null @@ -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 diff --git a/data/Info-ZIP/Info-ZIP.yaml b/data/Info-ZIP/Info-ZIP.yaml deleted file mode 100644 index a20fb39..0000000 --- a/data/Info-ZIP/Info-ZIP.yaml +++ /dev/null @@ -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 diff --git a/data/Inner-Net/Inner-Net.yaml b/data/Inner-Net/Inner-Net.yaml deleted file mode 100644 index 8226b62..0000000 --- a/data/Inner-Net/Inner-Net.yaml +++ /dev/null @@ -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 diff --git a/data/Intel/Intel.yaml b/data/Intel/Intel.yaml deleted file mode 100644 index 12cff23..0000000 --- a/data/Intel/Intel.yaml +++ /dev/null @@ -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 diff --git a/data/Intel/Intel_ACPI.yaml b/data/Intel/Intel_ACPI.yaml deleted file mode 100644 index 96dad55..0000000 --- a/data/Intel/Intel_ACPI.yaml +++ /dev/null @@ -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 diff --git a/data/Intel/Intel_IPW3945_Daemon_License.yaml b/data/Intel/Intel_IPW3945_Daemon_License.yaml deleted file mode 100644 index 8504a9c..0000000 --- a/data/Intel/Intel_IPW3945_Daemon_License.yaml +++ /dev/null @@ -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 diff --git a/data/Interbase/Interbase.yaml b/data/Interbase/Interbase.yaml deleted file mode 100644 index 7afcacb..0000000 --- a/data/Interbase/Interbase.yaml +++ /dev/null @@ -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 diff --git a/data/JDOM/JDOM_License.yaml b/data/JDOM/JDOM_License.yaml deleted file mode 100644 index 4c620c6..0000000 --- a/data/JDOM/JDOM_License.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -approved: yes -name: JDOM License -url: http://repository.jboss.org/licenses/jdom-1.0.txt diff --git a/data/JPython/JPython.yaml b/data/JPython/JPython.yaml deleted file mode 100644 index af5e208..0000000 --- a/data/JPython/JPython.yaml +++ /dev/null @@ -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 diff --git a/data/JSON/JSON.yaml b/data/JSON/JSON.yaml deleted file mode 100644 index a304a42..0000000 --- a/data/JSON/JSON.yaml +++ /dev/null @@ -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 diff --git a/data/Jabber/Jabber.yaml b/data/Jabber/Jabber.yaml deleted file mode 100644 index ef75bf2..0000000 --- a/data/Jabber/Jabber.yaml +++ /dev/null @@ -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 diff --git a/data/Jahia/Jahia_Community_Source_License.yaml b/data/Jahia/Jahia_Community_Source_License.yaml deleted file mode 100644 index 9706fbf..0000000 --- a/data/Jahia/Jahia_Community_Source_License.yaml +++ /dev/null @@ -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 diff --git a/data/JasPer/JasPer.yaml b/data/JasPer/JasPer.yaml deleted file mode 100644 index 1c36168..0000000 --- a/data/JasPer/JasPer.yaml +++ /dev/null @@ -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 diff --git a/data/Jaxen/The_Jaxen_License.yaml b/data/Jaxen/The_Jaxen_License.yaml deleted file mode 100644 index c6f1bed..0000000 --- a/data/Jaxen/The_Jaxen_License.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -approved: yes -name: The Jaxen License -url: http://www.jaxen.org/license.html diff --git a/data/Julius/Julius.yaml b/data/Julius/Julius.yaml deleted file mode 100644 index e168b72..0000000 --- a/data/Julius/Julius.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Julius -fedora_name: Julius License -name: Julius License -url: https://fedoraproject.org/wiki/Licensing/Julius diff --git a/data/Knuth/Knuth.yaml b/data/Knuth/Knuth.yaml deleted file mode 100644 index 2cb0fca..0000000 --- a/data/Knuth/Knuth.yaml +++ /dev/null @@ -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 diff --git a/data/LAL/LAL-1.2.yaml b/data/LAL/LAL-1.2.yaml deleted file mode 100644 index e3ffd18..0000000 --- a/data/LAL/LAL-1.2.yaml +++ /dev/null @@ -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/ diff --git a/data/LAL/LAL-1.3.yaml b/data/LAL/LAL-1.3.yaml deleted file mode 100644 index 3764d16..0000000 --- a/data/LAL/LAL-1.3.yaml +++ /dev/null @@ -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/ diff --git a/data/LDPL/LDPL.yaml b/data/LDPL/LDPL.yaml deleted file mode 100644 index a61410c..0000000 --- a/data/LDPL/LDPL.yaml +++ /dev/null @@ -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 diff --git a/data/LEGO/LOSLA.yaml b/data/LEGO/LOSLA.yaml deleted file mode 100644 index 6286c4d..0000000 --- a/data/LEGO/LOSLA.yaml +++ /dev/null @@ -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 diff --git a/data/LLGPL/LLGPL.yaml b/data/LLGPL/LLGPL.yaml deleted file mode 100644 index 2ddd2c3..0000000 --- a/data/LLGPL/LLGPL.yaml +++ /dev/null @@ -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 diff --git a/data/LaTeX/LPPL-1.0.yaml b/data/LaTeX/LPPL-1.0.yaml deleted file mode 100644 index 191c2b1..0000000 --- a/data/LaTeX/LPPL-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/LaTeX/LPPL-1.1.yaml b/data/LaTeX/LPPL-1.1.yaml deleted file mode 100644 index 8e7b6cc..0000000 --- a/data/LaTeX/LPPL-1.1.yaml +++ /dev/null @@ -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 diff --git a/data/LaTeX/LPPL-1.2.yaml b/data/LaTeX/LPPL-1.2.yaml deleted file mode 100644 index 1c2ab78..0000000 --- a/data/LaTeX/LPPL-1.2.yaml +++ /dev/null @@ -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 diff --git a/data/LaTeX/LPPL-1.3c.yaml b/data/LaTeX/LPPL-1.3c.yaml deleted file mode 100644 index 97e159c..0000000 --- a/data/LaTeX/LPPL-1.3c.yaml +++ /dev/null @@ -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 diff --git a/data/LaTeX/LPPL.yaml b/data/LaTeX/LPPL.yaml deleted file mode 100644 index 2b1a52e..0000000 --- a/data/LaTeX/LPPL.yaml +++ /dev/null @@ -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 diff --git a/data/Larabie/Larabie_Fonts_License.yaml b/data/Larabie/Larabie_Fonts_License.yaml deleted file mode 100644 index fb9f634..0000000 --- a/data/Larabie/Larabie_Fonts_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Larabie Fonts License -name: Larabie Fonts License -url: https://fedoraproject.org/wiki/Licensing/LarabieFontsLicense diff --git a/data/Latex2e/Latex2e.yaml b/data/Latex2e/Latex2e.yaml deleted file mode 100644 index eaafa4a..0000000 --- a/data/Latex2e/Latex2e.yaml +++ /dev/null @@ -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 diff --git a/data/Leptonica/Leptonica.yaml b/data/Leptonica/Leptonica.yaml deleted file mode 100644 index 4fa3876..0000000 --- a/data/Leptonica/Leptonica.yaml +++ /dev/null @@ -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 diff --git a/data/Lhcyr/Lhcyr.yaml b/data/Lhcyr/Lhcyr.yaml deleted file mode 100644 index c6ba9e6..0000000 --- a/data/Lhcyr/Lhcyr.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Lhcyr -fedora_name: Lhcyr License -name: Lhcyr License -url: https://fedoraproject.org/wiki/Licensing/Lhcyr diff --git a/data/LiLiQ/LiLiQ-P-1.1.yaml b/data/LiLiQ/LiLiQ-P-1.1.yaml deleted file mode 100644 index 0475774..0000000 --- a/data/LiLiQ/LiLiQ-P-1.1.yaml +++ /dev/null @@ -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 diff --git a/data/LiLiQ/LiLiQ-R-1.1.yaml b/data/LiLiQ/LiLiQ-R-1.1.yaml deleted file mode 100644 index 0183572..0000000 --- a/data/LiLiQ/LiLiQ-R-1.1.yaml +++ /dev/null @@ -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 diff --git a/data/LiLiQ/LiLiQ-Rplus-1.1.yaml b/data/LiLiQ/LiLiQ-Rplus-1.1.yaml deleted file mode 100644 index 7fb10b3..0000000 --- a/data/LiLiQ/LiLiQ-Rplus-1.1.yaml +++ /dev/null @@ -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 diff --git a/data/Liberation/Liberation.yaml b/data/Liberation/Liberation.yaml deleted file mode 100644 index 34227b8..0000000 --- a/data/Liberation/Liberation.yaml +++ /dev/null @@ -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 diff --git a/data/LinuxTag/Green_OpenMusic.yaml b/data/LinuxTag/Green_OpenMusic.yaml deleted file mode 100644 index 2b0fa39..0000000 --- a/data/LinuxTag/Green_OpenMusic.yaml +++ /dev/null @@ -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 diff --git a/data/LinuxTag/LinuxTag_Yellow_OpenMusic_License.yaml b/data/LinuxTag/LinuxTag_Yellow_OpenMusic_License.yaml deleted file mode 100644 index b1c6ac3..0000000 --- a/data/LinuxTag/LinuxTag_Yellow_OpenMusic_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: LinuxTag Yellow OpenMusic License -name: LinuxTag Yellow OpenMusic License -url: http://openmusic.linuxtag.org/yellow.html diff --git a/data/Literat/Literat_Font_License.yaml b/data/Literat/Literat_Font_License.yaml deleted file mode 100644 index 2a64462..0000000 --- a/data/Literat/Literat_Font_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Literat Font License -name: Literat Font License -url: https://fedoraproject.org/wiki/Licensing/LiteratFontLicense diff --git a/data/Logica/Logica.yaml b/data/Logica/Logica.yaml deleted file mode 100644 index 0cfc765..0000000 --- a/data/Logica/Logica.yaml +++ /dev/null @@ -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 diff --git a/data/Lucent/LPL-1.0.yaml b/data/Lucent/LPL-1.0.yaml deleted file mode 100644 index c1c5692..0000000 --- a/data/Lucent/LPL-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/Lucent/LPL.yaml b/data/Lucent/LPL.yaml deleted file mode 100644 index 33cc666..0000000 --- a/data/Lucent/LPL.yaml +++ /dev/null @@ -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 diff --git a/data/Lucida/Lucida.yaml b/data/Lucida/Lucida.yaml deleted file mode 100644 index d99e922..0000000 --- a/data/Lucida/Lucida.yaml +++ /dev/null @@ -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 diff --git a/data/MAME/MAME_License.yaml b/data/MAME/MAME_License.yaml deleted file mode 100644 index 2dbceb6..0000000 --- a/data/MAME/MAME_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: MAME License -name: MAME License -url: http://mamedev.org/legal.html diff --git a/data/MIT/DMIT.yaml b/data/MIT/DMIT.yaml deleted file mode 100644 index be395d1..0000000 --- a/data/MIT/DMIT.yaml +++ /dev/null @@ -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 diff --git a/data/MIT/MIT-0.yaml b/data/MIT/MIT-0.yaml deleted file mode 100644 index 1cc8a93..0000000 --- a/data/MIT/MIT-0.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -approved: yes diff --git a/data/MIT/MIT.yaml b/data/MIT/MIT.yaml deleted file mode 100644 index bb7caa7..0000000 --- a/data/MIT/MIT.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -name: The MIT License -spdx_abbrev: MIT -spdx_name: MIT License -url: http://www.opensource.org/licenses/MIT diff --git a/data/MIT/MITNFA.yaml b/data/MIT/MITNFA.yaml deleted file mode 100644 index 0fafb2e..0000000 --- a/data/MIT/MITNFA.yaml +++ /dev/null @@ -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 diff --git a/data/MIT/MIT_with_advertising.yaml b/data/MIT/MIT_with_advertising.yaml deleted file mode 100644 index 102ca15..0000000 --- a/data/MIT/MIT_with_advertising.yaml +++ /dev/null @@ -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 diff --git a/data/MIT/Multics.yaml b/data/MIT/Multics.yaml deleted file mode 100644 index cea6f06..0000000 --- a/data/MIT/Multics.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Multics License -spdx_abbrev: Multics -spdx_name: Multics License -url: http://www.opensource.org/licenses/Multics diff --git a/data/MIT/The_JSoup_MIT_License.yaml b/data/MIT/The_JSoup_MIT_License.yaml deleted file mode 100644 index 81c8f5f..0000000 --- a/data/MIT/The_JSoup_MIT_License.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -approved: yes -name: The JSoup MIT License -url: https://jsoup.org/license.html diff --git a/data/MITRE/MITRE_Collaborative_Virtual_Workspace_License_CVW.yaml b/data/MITRE/MITRE_Collaborative_Virtual_Workspace_License_CVW.yaml deleted file mode 100644 index 3c9626c..0000000 --- a/data/MITRE/MITRE_Collaborative_Virtual_Workspace_License_CVW.yaml +++ /dev/null @@ -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 diff --git a/data/MSNTP/MSNTP_License.yaml b/data/MSNTP/MSNTP_License.yaml deleted file mode 100644 index 9509d97..0000000 --- a/data/MSNTP/MSNTP_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: MSNTP License -name: MSNTP License -url: https://fedoraproject.org/wiki/Licensing:MSNTP?rd=Licensing/MSNTP diff --git a/data/MTLL/MTLL.yaml b/data/MTLL/MTLL.yaml deleted file mode 100644 index 8e58668..0000000 --- a/data/MTLL/MTLL.yaml +++ /dev/null @@ -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 diff --git a/data/MaBell/AT&T_Public_License.yaml b/data/MaBell/AT&T_Public_License.yaml deleted file mode 100644 index f144015..0000000 --- a/data/MaBell/AT&T_Public_License.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -approved: no -fedora_name: AT&T Public License -name: AT&T Public License diff --git a/data/Maia/Maia_Mailguard_License.yaml b/data/Maia/Maia_Mailguard_License.yaml deleted file mode 100644 index 80dfb3d..0000000 --- a/data/Maia/Maia_Mailguard_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Maia Mailguard License -name: Maia Mailguard License -url: http://www.maiamailguard.org/license.php diff --git a/data/MakeIndex/MakeIndex.yaml b/data/MakeIndex/MakeIndex.yaml deleted file mode 100644 index 6f541e5..0000000 --- a/data/MakeIndex/MakeIndex.yaml +++ /dev/null @@ -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 diff --git a/data/MeepZor_Consulting/MeepZor_Consulting_Public_Licence.yaml b/data/MeepZor_Consulting/MeepZor_Consulting_Public_Licence.yaml deleted file mode 100644 index 85138a8..0000000 --- a/data/MeepZor_Consulting/MeepZor_Consulting_Public_Licence.yaml +++ /dev/null @@ -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 diff --git a/data/Metasploit/Metasploit_Framework_License_pre_2006.yaml b/data/Metasploit/Metasploit_Framework_License_pre_2006.yaml deleted file mode 100644 index 32c299a..0000000 --- a/data/Metasploit/Metasploit_Framework_License_pre_2006.yaml +++ /dev/null @@ -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 diff --git a/data/MgOpen/MgOpen.yaml b/data/MgOpen/MgOpen.yaml deleted file mode 100644 index ad868f2..0000000 --- a/data/MgOpen/MgOpen.yaml +++ /dev/null @@ -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 diff --git a/data/Microsoft/MS-PL.yaml b/data/Microsoft/MS-PL.yaml deleted file mode 100644 index de7b722..0000000 --- a/data/Microsoft/MS-PL.yaml +++ /dev/null @@ -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 diff --git a/data/Microsoft/MS-RL.yaml b/data/Microsoft/MS-RL.yaml deleted file mode 100644 index f2fd0bd..0000000 --- a/data/Microsoft/MS-RL.yaml +++ /dev/null @@ -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 diff --git a/data/Microsoft/Microsoft_Shared_Source_CLI_Csharp_Jscript_License.yaml b/data/Microsoft/Microsoft_Shared_Source_CLI_Csharp_Jscript_License.yaml deleted file mode 100644 index 20df397..0000000 --- a/data/Microsoft/Microsoft_Shared_Source_CLI_Csharp_Jscript_License.yaml +++ /dev/null @@ -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 diff --git a/data/MirOS/MirOS.yaml b/data/MirOS/MirOS.yaml deleted file mode 100644 index b84c940..0000000 --- a/data/MirOS/MirOS.yaml +++ /dev/null @@ -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 diff --git a/data/Motosoto/Motosoto.yaml b/data/Motosoto/Motosoto.yaml deleted file mode 100644 index a7f6b36..0000000 --- a/data/Motosoto/Motosoto.yaml +++ /dev/null @@ -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 diff --git a/data/Mozilla/MPL-2.0-no-copyleft-exception.yaml b/data/Mozilla/MPL-2.0-no-copyleft-exception.yaml deleted file mode 100644 index d541b79..0000000 --- a/data/Mozilla/MPL-2.0-no-copyleft-exception.yaml +++ /dev/null @@ -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/ diff --git a/data/Mozilla/MPLv1.0.yaml b/data/Mozilla/MPLv1.0.yaml deleted file mode 100644 index 8a0300b..0000000 --- a/data/Mozilla/MPLv1.0.yaml +++ /dev/null @@ -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 diff --git a/data/Mozilla/MPLv1.1.yaml b/data/Mozilla/MPLv1.1.yaml deleted file mode 100644 index 89e719e..0000000 --- a/data/Mozilla/MPLv1.1.yaml +++ /dev/null @@ -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 diff --git a/data/Mozilla/MPLv2.0.yaml b/data/Mozilla/MPLv2.0.yaml deleted file mode 100644 index 2903b27..0000000 --- a/data/Mozilla/MPLv2.0.yaml +++ /dev/null @@ -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/ diff --git a/data/Mozilla/NPL-1.1.yaml b/data/Mozilla/NPL-1.1.yaml deleted file mode 100644 index 1e37a0c..0000000 --- a/data/Mozilla/NPL-1.1.yaml +++ /dev/null @@ -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/ diff --git a/data/Mozilla/Netscape.yaml b/data/Mozilla/Netscape.yaml deleted file mode 100644 index 38fb5c8..0000000 --- a/data/Mozilla/Netscape.yaml +++ /dev/null @@ -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/ diff --git a/data/Mup/Mup.yaml b/data/Mup/Mup.yaml deleted file mode 100644 index a6f19c6..0000000 --- a/data/Mup/Mup.yaml +++ /dev/null @@ -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 diff --git a/data/NASA/NASA-1.3.yaml b/data/NASA/NASA-1.3.yaml deleted file mode 100644 index ab488cc..0000000 --- a/data/NASA/NASA-1.3.yaml +++ /dev/null @@ -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/ diff --git a/data/NASA/NASA_CDF_License.yaml b/data/NASA/NASA_CDF_License.yaml deleted file mode 100644 index 466f7dd..0000000 --- a/data/NASA/NASA_CDF_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: NASA CDF License -name: NASA CDF License -url: https://fedoraproject.org/wiki/Licensing/NasaCDF diff --git a/data/NCSA/NCSA.yaml b/data/NCSA/NCSA.yaml deleted file mode 100644 index e7545b9..0000000 --- a/data/NCSA/NCSA.yaml +++ /dev/null @@ -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 diff --git a/data/NIST/NISTSL.yaml b/data/NIST/NISTSL.yaml deleted file mode 100644 index 13f0ea6..0000000 --- a/data/NIST/NISTSL.yaml +++ /dev/null @@ -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 diff --git a/data/NLPL/NLPL.yaml b/data/NLPL/NLPL.yaml deleted file mode 100644 index 9733d3f..0000000 --- a/data/NLPL/NLPL.yaml +++ /dev/null @@ -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 diff --git a/data/NTP/NTP.yaml b/data/NTP/NTP.yaml deleted file mode 100644 index b26a169..0000000 --- a/data/NTP/NTP.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: NTP License -spdx_abbrev: NTP -spdx_name: NTP License -url: http://www.opensource.org/licenses/NTP diff --git a/data/Naumen/Naumen.yaml b/data/Naumen/Naumen.yaml deleted file mode 100644 index 4c59034..0000000 --- a/data/Naumen/Naumen.yaml +++ /dev/null @@ -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 diff --git a/data/Net-SNMP/Net-SNMP.yaml b/data/Net-SNMP/Net-SNMP.yaml deleted file mode 100644 index 48f3556..0000000 --- a/data/Net-SNMP/Net-SNMP.yaml +++ /dev/null @@ -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 diff --git a/data/NetCDF/NetCDF.yaml b/data/NetCDF/NetCDF.yaml deleted file mode 100644 index 88e3c73..0000000 --- a/data/NetCDF/NetCDF.yaml +++ /dev/null @@ -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 diff --git a/data/Net_Boolean/NBPL-1.0.yaml b/data/Net_Boolean/NBPL-1.0.yaml deleted file mode 100644 index 4dc8f42..0000000 --- a/data/Net_Boolean/NBPL-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/Nethack/NGPL.yaml b/data/Nethack/NGPL.yaml deleted file mode 100644 index 8173727..0000000 --- a/data/Nethack/NGPL.yaml +++ /dev/null @@ -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 diff --git a/data/Netizen/NOSL.yaml b/data/Netizen/NOSL.yaml deleted file mode 100644 index e2d76ee..0000000 --- a/data/Netizen/NOSL.yaml +++ /dev/null @@ -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 diff --git a/data/Newmat/Newmat.yaml b/data/Newmat/Newmat.yaml deleted file mode 100644 index 1d6ae88..0000000 --- a/data/Newmat/Newmat.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Newmat -fedora_name: Newmat License -name: Newmat License -url: https://fedoraproject.org/wiki/Licensing/Newmat_License diff --git a/data/Newsletr/Newsletr.yaml b/data/Newsletr/Newsletr.yaml deleted file mode 100644 index 0d40f3c..0000000 --- a/data/Newsletr/Newsletr.yaml +++ /dev/null @@ -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 diff --git a/data/Nmap/Nmap.yaml b/data/Nmap/Nmap.yaml deleted file mode 100644 index cb687ba..0000000 --- a/data/Nmap/Nmap.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Nmap -fedora_name: Nmap License -name: Nmap License -url: https://fedoraproject.org/wiki/Licensing/Nmap diff --git a/data/Nmap/npsl.yaml b/data/Nmap/npsl.yaml deleted file mode 100644 index 332c9a0..0000000 --- a/data/Nmap/npsl.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -approved: no diff --git a/data/Nokia/Nokia.yaml b/data/Nokia/Nokia.yaml deleted file mode 100644 index fb45fee..0000000 --- a/data/Nokia/Nokia.yaml +++ /dev/null @@ -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 diff --git a/data/Non-Profit/NPOSL-3.0.yaml b/data/Non-Profit/NPOSL-3.0.yaml deleted file mode 100644 index d979b35..0000000 --- a/data/Non-Profit/NPOSL-3.0.yaml +++ /dev/null @@ -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 diff --git a/data/Norway/NLOD-1.0.yaml b/data/Norway/NLOD-1.0.yaml deleted file mode 100644 index 239b245..0000000 --- a/data/Norway/NLOD-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/Noweb/Noweb.yaml b/data/Noweb/Noweb.yaml deleted file mode 100644 index 12136cc..0000000 --- a/data/Noweb/Noweb.yaml +++ /dev/null @@ -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 diff --git a/data/OCLC/OCLC-2.0.yaml b/data/OCLC/OCLC-2.0.yaml deleted file mode 100644 index 963ad2d..0000000 --- a/data/OCLC/OCLC-2.0.yaml +++ /dev/null @@ -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 diff --git a/data/ODC/ODbL-1.0.yaml b/data/ODC/ODbL-1.0.yaml deleted file mode 100644 index 862ba20..0000000 --- a/data/ODC/ODbL-1.0.yaml +++ /dev/null @@ -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/ diff --git a/data/ODC/PDDL-1.0.yaml b/data/ODC/PDDL-1.0.yaml deleted file mode 100644 index a28dcc3..0000000 --- a/data/ODC/PDDL-1.0.yaml +++ /dev/null @@ -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/ diff --git a/data/OFL/OFL-1.0.yaml b/data/OFL/OFL-1.0.yaml deleted file mode 100644 index c075932..0000000 --- a/data/OFL/OFL-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/OFL/OFL.yaml b/data/OFL/OFL.yaml deleted file mode 100644 index c4b566a..0000000 --- a/data/OFL/OFL.yaml +++ /dev/null @@ -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 diff --git a/data/OML/OML.yaml b/data/OML/OML.yaml deleted file mode 100644 index 28ec874..0000000 --- a/data/OML/OML.yaml +++ /dev/null @@ -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 diff --git a/data/OPL/OPL-1.0.yaml b/data/OPL/OPL-1.0.yaml deleted file mode 100644 index a72e57f..0000000 --- a/data/OPL/OPL-1.0.yaml +++ /dev/null @@ -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 diff --git a/data/OReilly/OReilly.yaml b/data/OReilly/OReilly.yaml deleted file mode 100644 index b7519d2..0000000 --- a/data/OReilly/OReilly.yaml +++ /dev/null @@ -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 diff --git a/data/OSET/OSET-PL-2.1.yaml b/data/OSET/OSET-PL-2.1.yaml deleted file mode 100644 index 226f17b..0000000 --- a/data/OSET/OSET-PL-2.1.yaml +++ /dev/null @@ -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 diff --git a/data/OSGi/OSGi_Specification_License.yaml b/data/OSGi/OSGi_Specification_License.yaml deleted file mode 100644 index 1930025..0000000 --- a/data/OSGi/OSGi_Specification_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: OSGi Specification License -name: OSGi Specification License -url: http://www.osgi.org/Main/OSGiSpecificationLicense diff --git a/data/OSL/OSL_1.0.yaml b/data/OSL/OSL_1.0.yaml deleted file mode 100644 index cf601c5..0000000 --- a/data/OSL/OSL_1.0.yaml +++ /dev/null @@ -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 diff --git a/data/OSL/OSL_1.1.yaml b/data/OSL/OSL_1.1.yaml deleted file mode 100644 index 79be027..0000000 --- a/data/OSL/OSL_1.1.yaml +++ /dev/null @@ -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 diff --git a/data/OSL/OSL_2.0.yaml b/data/OSL/OSL_2.0.yaml deleted file mode 100644 index eca6a1d..0000000 --- a/data/OSL/OSL_2.0.yaml +++ /dev/null @@ -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 diff --git a/data/OSL/OSL_2.1.yaml b/data/OSL/OSL_2.1.yaml deleted file mode 100644 index 2bfa2f9..0000000 --- a/data/OSL/OSL_2.1.yaml +++ /dev/null @@ -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 diff --git a/data/OSL/OSL_3.0.yaml b/data/OSL/OSL_3.0.yaml deleted file mode 100644 index 52681c3..0000000 --- a/data/OSL/OSL_3.0.yaml +++ /dev/null @@ -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 diff --git a/data/OpenContent/Open_Content_License.yaml b/data/OpenContent/Open_Content_License.yaml deleted file mode 100644 index 05e0a2e..0000000 --- a/data/OpenContent/Open_Content_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Open Content License -name: Open Content License -url: http://opencontent.org/opl.shtml diff --git a/data/OpenContent/Open_Publication.yaml b/data/OpenContent/Open_Publication.yaml deleted file mode 100644 index d5978ca..0000000 --- a/data/OpenContent/Open_Publication.yaml +++ /dev/null @@ -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/ diff --git a/data/OpenGroup/OGTSL.yaml b/data/OpenGroup/OGTSL.yaml deleted file mode 100644 index 359b1fc..0000000 --- a/data/OpenGroup/OGTSL.yaml +++ /dev/null @@ -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 diff --git a/data/OpenLDAP/OLDAP-1.1.yaml b/data/OpenLDAP/OLDAP-1.1.yaml deleted file mode 100644 index 76d3296..0000000 --- a/data/OpenLDAP/OLDAP-1.1.yaml +++ /dev/null @@ -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 diff --git a/data/OpenLDAP/OLDAP-1.2.yaml b/data/OpenLDAP/OLDAP-1.2.yaml deleted file mode 100644 index dc7ec73..0000000 --- a/data/OpenLDAP/OLDAP-1.2.yaml +++ /dev/null @@ -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 diff --git a/data/OpenLDAP/OLDAP-1.3.yaml b/data/OpenLDAP/OLDAP-1.3.yaml deleted file mode 100644 index a5a6cd3..0000000 --- a/data/OpenLDAP/OLDAP-1.3.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Open LDAP Public License v1.3 -spdx_abbrev: OLDAP-1.3 -spdx_name: Open LDAP Public License v1.3 -url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=e5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1 diff --git a/data/OpenLDAP/OLDAP-1.4.yaml b/data/OpenLDAP/OLDAP-1.4.yaml deleted file mode 100644 index 86013a8..0000000 --- a/data/OpenLDAP/OLDAP-1.4.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Open LDAP Public License v1.4 -spdx_abbrev: OLDAP-1.4 -spdx_name: Open LDAP Public License v1.4 -url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=c9f95c2f3f2ffb5e0ae55fe7388af75547660941 diff --git a/data/OpenLDAP/OLDAP-2.0.1.yaml b/data/OpenLDAP/OLDAP-2.0.1.yaml deleted file mode 100644 index f6aee6e..0000000 --- a/data/OpenLDAP/OLDAP-2.0.1.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Open LDAP Public License v2.0.1 -spdx_abbrev: OLDAP-2.0.1 -spdx_name: Open LDAP Public License v2.0.1 -url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b6d68acd14e51ca3aab4428bf26522aa74873f0e diff --git a/data/OpenLDAP/OLDAP-2.0.yaml b/data/OpenLDAP/OLDAP-2.0.yaml deleted file mode 100644 index 1b5b87f..0000000 --- a/data/OpenLDAP/OLDAP-2.0.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B) -spdx_abbrev: OLDAP-2.0 -spdx_name: Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B) -url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cbf50f4e1185a21abd4c0a54d3f4341fe28f36ea diff --git a/data/OpenLDAP/OLDAP-2.1.yaml b/data/OpenLDAP/OLDAP-2.1.yaml deleted file mode 100644 index 2c0a312..0000000 --- a/data/OpenLDAP/OLDAP-2.1.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Open LDAP Public License v2.1 -spdx_abbrev: OLDAP-2.1 -spdx_name: Open LDAP Public License v2.1 -url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b0d176738e96a0d3b9f85cb51e140a86f21be715 diff --git a/data/OpenLDAP/OLDAP-2.2.1.yaml b/data/OpenLDAP/OLDAP-2.2.1.yaml deleted file mode 100644 index 3bc1862..0000000 --- a/data/OpenLDAP/OLDAP-2.2.1.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Open LDAP Public License v2.2.1 -spdx_abbrev: OLDAP-2.2.1 -spdx_name: Open LDAP Public License v2.2.1 -url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=4bc786f34b50aa301be6f5600f58a980070f481e diff --git a/data/OpenLDAP/OLDAP-2.2.2.yaml b/data/OpenLDAP/OLDAP-2.2.2.yaml deleted file mode 100644 index 6dd5bb4..0000000 --- a/data/OpenLDAP/OLDAP-2.2.2.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Open LDAP Public License 2.2.2 -spdx_abbrev: OLDAP-2.2.2 -spdx_name: Open LDAP Public License 2.2.2 -url: https://spdx.org/licenses/OLDAP-2.2.2.html diff --git a/data/OpenLDAP/OLDAP-2.2.yaml b/data/OpenLDAP/OLDAP-2.2.yaml deleted file mode 100644 index 1b0a9a7..0000000 --- a/data/OpenLDAP/OLDAP-2.2.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Open LDAP Public License v2.2 -spdx_abbrev: OLDAP-2.2 -spdx_name: Open LDAP Public License v2.2 -url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=470b0c18ec67621c85881b2733057fecf4a1acc3 diff --git a/data/OpenLDAP/OLDAP-2.3.yaml b/data/OpenLDAP/OLDAP-2.3.yaml deleted file mode 100644 index 7be0ffd..0000000 --- a/data/OpenLDAP/OLDAP-2.3.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Open LDAP Public License v2.3 -spdx_abbrev: OLDAP-2.3 -spdx_name: Open LDAP Public License v2.3 -url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=d32cf54a32d581ab475d23c810b0a7fbaf8d63c3 diff --git a/data/OpenLDAP/OLDAP-2.4.yaml b/data/OpenLDAP/OLDAP-2.4.yaml deleted file mode 100644 index a24995c..0000000 --- a/data/OpenLDAP/OLDAP-2.4.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Open LDAP Public License v2.4 -spdx_abbrev: OLDAP-2.4 -spdx_name: Open LDAP Public License v2.4 -url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cd1284c4a91a8a380d904eee68d1583f989ed386 diff --git a/data/OpenLDAP/OLDAP-2.5.yaml b/data/OpenLDAP/OLDAP-2.5.yaml deleted file mode 100644 index 676cdbd..0000000 --- a/data/OpenLDAP/OLDAP-2.5.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Open LDAP Public License v2.5 -spdx_abbrev: OLDAP-2.5 -spdx_name: Open LDAP Public License v2.5 -url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=6852b9d90022e8593c98205413380536b1b5a7cf diff --git a/data/OpenLDAP/OLDAP-2.6.yaml b/data/OpenLDAP/OLDAP-2.6.yaml deleted file mode 100644 index befe691..0000000 --- a/data/OpenLDAP/OLDAP-2.6.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Open LDAP Public License v2.6 -spdx_abbrev: OLDAP-2.6 -spdx_name: Open LDAP Public License v2.6 -url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=1cae062821881f41b73012ba816434897abf4205 diff --git a/data/OpenLDAP/OLDAP-2.7.yaml b/data/OpenLDAP/OLDAP-2.7.yaml deleted file mode 100644 index 8df0676..0000000 --- a/data/OpenLDAP/OLDAP-2.7.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Open LDAP Public License v2.7 -spdx_abbrev: OLDAP-2.7 -spdx_name: Open LDAP Public License v2.7 -url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=47c2415c1df81556eeb39be6cad458ef87c534a2 diff --git a/data/OpenLDAP/OpenLDAP.yaml b/data/OpenLDAP/OpenLDAP.yaml deleted file mode 100644 index 1ebd5d1..0000000 --- a/data/OpenLDAP/OpenLDAP.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: OpenLDAP -fedora_name: OpenLDAP License -name: OpenLDAP License -spdx_abbrev: OLDAP-2.8 -spdx_name: Open LDAP Public License v2.8 -url: http://www.openldap.org/software/release/license.html diff --git a/data/OpenMap/Open_Map_License.yaml b/data/OpenMap/Open_Map_License.yaml deleted file mode 100644 index 3ede257..0000000 --- a/data/OpenMap/Open_Map_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Open Map License -name: Open Map License -url: http://openmap.bbn.com/license.html diff --git a/data/OpenMotif/Open_Motif_Public_End_User_License.yaml b/data/OpenMotif/Open_Motif_Public_End_User_License.yaml deleted file mode 100644 index d9dc1f3..0000000 --- a/data/OpenMotif/Open_Motif_Public_End_User_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Open Motif Public End User License -name: Open Motif Public End User License -url: http://www.opengroup.org/openmotif/license/ diff --git a/data/OpenPBS/OpenPBS.yaml b/data/OpenPBS/OpenPBS.yaml deleted file mode 100644 index 1088dab..0000000 --- a/data/OpenPBS/OpenPBS.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: OpenPBS -fedora_name: OpenPBS License -name: OpenPBS License -url: https://fedoraproject.org/wiki/Licensing/OpenPBS diff --git a/data/OpenSSL/OpenSSL.yaml b/data/OpenSSL/OpenSSL.yaml deleted file mode 100644 index bf8c25e..0000000 --- a/data/OpenSSL/OpenSSL.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: OpenSSL -fedora_name: OpenSSL License -name: OpenSSL License -spdx_abbrev: OpenSSL -spdx_name: OpenSSL License -url: http://www.openssl.org/source/license.html diff --git a/data/Open_Cascade/OCCT-PL.yaml b/data/Open_Cascade/OCCT-PL.yaml deleted file mode 100644 index 05c01c2..0000000 --- a/data/Open_Cascade/OCCT-PL.yaml +++ /dev/null @@ -1,7 +0,0 @@ ---- -approved: no -fedora_name: Open CASCADE Technology Public License -name: Open CASCADE Technology Public License -spdx_abbrev: OCCT-PL -spdx_name: Open CASCADE Technology Public License -url: http://www.opencascade.com/content/occt-public-license diff --git a/data/Ouverte/Ouverte.yaml b/data/Ouverte/Ouverte.yaml deleted file mode 100644 index f5775a0..0000000 --- a/data/Ouverte/Ouverte.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Ouverte -fedora_name: License Ouverte -name: License Ouverte -url: https://www.etalab.gouv.fr/licence-ouverte-open-licence diff --git a/data/PHP/PHP-3.01.yaml b/data/PHP/PHP-3.01.yaml deleted file mode 100644 index 5f65743..0000000 --- a/data/PHP/PHP-3.01.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: PHP License v3.01 -spdx_abbrev: PHP-3.01 -spdx_name: PHP License v3.01 -url: http://www.php.net/license/3_01.txt diff --git a/data/PHP/PHP.yaml b/data/PHP/PHP.yaml deleted file mode 100644 index 3e37418..0000000 --- a/data/PHP/PHP.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: PHP -fedora_name: PHP License v3.0 -name: PHP License v3.0 -spdx_abbrev: PHP-3.0 -spdx_name: PHP License v3.0 -url: http://www.opensource.org/licenses/PHP-3.0 diff --git a/data/Par/Par.yaml b/data/Par/Par.yaml deleted file mode 100644 index 8baf973..0000000 --- a/data/Par/Par.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Par -fedora_name: Par License -name: Par License -url: https://fedoraproject.org/wiki/Licensing/Par diff --git a/data/ParaType/PTFL.yaml b/data/ParaType/PTFL.yaml deleted file mode 100644 index 1a67db0..0000000 --- a/data/ParaType/PTFL.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: PTFL -fedora_name: ParaType Font License -name: ParaType Font License -url: https://fedoraproject.org/wiki/Licensing/Fonts/ParaType_Font_License diff --git a/data/Paul_Hsieh/Paul_Hsieh_Derivative_License.yaml b/data/Paul_Hsieh/Paul_Hsieh_Derivative_License.yaml deleted file mode 100644 index 5d0866a..0000000 --- a/data/Paul_Hsieh/Paul_Hsieh_Derivative_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Paul Hsieh Derivative License -name: Paul Hsieh Derivative License -url: http://www.azillionmonkeys.com/qed/license-derivative.html diff --git a/data/Paul_Hsieh/Paul_Hsieh_Exposition_License.yaml b/data/Paul_Hsieh/Paul_Hsieh_Exposition_License.yaml deleted file mode 100644 index db48e2d..0000000 --- a/data/Paul_Hsieh/Paul_Hsieh_Exposition_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Paul Hsieh Exposition License -name: Paul Hsieh Exposition License -url: http://www.azillionmonkeys.com/qed/license-exposition.html diff --git a/data/Phorum/Phorum.yaml b/data/Phorum/Phorum.yaml deleted file mode 100644 index fab11ef..0000000 --- a/data/Phorum/Phorum.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Phorum -fedora_name: Phorum License -name: Phorum License -url: http://phorum.org/license.txt diff --git a/data/Pine/Pine_License.yaml b/data/Pine/Pine_License.yaml deleted file mode 100644 index 3887b06..0000000 --- a/data/Pine/Pine_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Pine License -name: Pine License -url: http://www.washington.edu/pine/overview/legal.html diff --git a/data/PlainTeX/PlainTeX.yaml b/data/PlainTeX/PlainTeX.yaml deleted file mode 100644 index 1c1077b..0000000 --- a/data/PlainTeX/PlainTeX.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: PlainTeX -fedora_name: PlainTeX License -name: PlainTeX License -url: https://fedoraproject.org/wiki/Licensing:PlainTeX?rd=Licensing/PlainTeX diff --git a/data/Plexus/Plexus.yaml b/data/Plexus/Plexus.yaml deleted file mode 100644 index b9a1757..0000000 --- a/data/Plexus/Plexus.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: Plexus -fedora_name: Plexus Classworlds License -name: Plexus Classworlds License -spdx_abbrev: Plexus -spdx_name: Plexus Classworlds License -url: https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License diff --git a/data/PostgreSQL/PostgreSQL.yaml b/data/PostgreSQL/PostgreSQL.yaml deleted file mode 100644 index 0a76351..0000000 --- a/data/PostgreSQL/PostgreSQL.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: PostgreSQL -fedora_name: PostgreSQL License -name: PostgreSQL License -spdx_abbrev: PostgreSQL -spdx_name: PostgreSQL License -url: http://www.postgresql.org/about/licence diff --git a/data/Public/Public_Domain.yaml b/data/Public/Public_Domain.yaml deleted file mode 100644 index 1d1dd0f..0000000 --- a/data/Public/Public_Domain.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: yes -fedora_abbrev: Public Domain -fedora_name: Public Domain -name: Public Domain diff --git a/data/Public/Public_Use.yaml b/data/Public/Public_Use.yaml deleted file mode 100644 index 6b5dc7e..0000000 --- a/data/Public/Public_Use.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Public Use -fedora_name: Public Use License, v1.0 -name: Public Use License, v1.0 -url: https://fedoraproject.org/wiki/Licensing/PublicUseLicense diff --git a/data/Public/Unlicense.yaml b/data/Public/Unlicense.yaml deleted file mode 100644 index 2fbd1c6..0000000 --- a/data/Public/Unlicense.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: Unlicense -fedora_name: Unlicense -name: Unlicense -spdx_abbrev: Unlicense -spdx_name: The Unlicense -url: http://unlicense.org/ diff --git a/data/Punknova/Punknova.yaml b/data/Punknova/Punknova.yaml deleted file mode 100644 index 6bdc5a8..0000000 --- a/data/Punknova/Punknova.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Punknova -fedora_name: Punknova Font License -name: Punknova Font License -url: https://fedoraproject.org/wiki/Licensing/Fonts/Punknova diff --git a/data/Python/Python-2.0.yaml b/data/Python/Python-2.0.yaml deleted file mode 100644 index 7b86217..0000000 --- a/data/Python/Python-2.0.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Python License 2.0 -spdx_abbrev: Python-2.0 -spdx_name: Python License 2.0 -url: http://www.opensource.org/licenses/Python-2.0 diff --git a/data/Python/Python.yaml b/data/Python/Python.yaml deleted file mode 100644 index 2d4ab9e..0000000 --- a/data/Python/Python.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Python -fedora_name: Python License -name: Python License -url: https://docs.python.org/2/license.html diff --git a/data/QPL/QPL-1.0.yaml b/data/QPL/QPL-1.0.yaml deleted file mode 100644 index 14dabf2..0000000 --- a/data/QPL/QPL-1.0.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Q Public License 1.0 -spdx_abbrev: QPL-1.0 -spdx_name: Q Public License 1.0 -url: http://doc.qt.nokia.com/3.3/license.html diff --git a/data/QPL/QPL.yaml b/data/QPL/QPL.yaml deleted file mode 100644 index cfc7ac8..0000000 --- a/data/QPL/QPL.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: QPL -fedora_name: Q Public License -name: Q Public License -url: http://doc.qt.digia.com/3.0/license.html diff --git a/data/Qhull/Qhull.yaml b/data/Qhull/Qhull.yaml deleted file mode 100644 index 67aad32..0000000 --- a/data/Qhull/Qhull.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: Qhull -fedora_name: Qhull License -name: Qhull License -spdx_abbrev: Qhull -spdx_name: Qhull License -url: https://fedoraproject.org/wiki/Licensing/Qhull diff --git a/data/REX/REX.yaml b/data/REX/REX.yaml deleted file mode 100644 index eba4d02..0000000 --- a/data/REX/REX.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: REX -fedora_name: REX License -name: REX License -url: https://fedoraproject.org/wiki/Licensing/REX diff --git a/data/RSA/RSA-MD.yaml b/data/RSA/RSA-MD.yaml deleted file mode 100644 index 2b9eb06..0000000 --- a/data/RSA/RSA-MD.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: RSA Message-Digest License -spdx_abbrev: RSA-MD -spdx_name: RSA Message-Digest License -url: https://spdx.org/licenses/RSA-MD.html diff --git a/data/RSA/RSA.yaml b/data/RSA/RSA.yaml deleted file mode 100644 index 7b47566..0000000 --- a/data/RSA/RSA.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: RSA -fedora_name: RSA License -name: RSA License -url: https://fedoraproject.org/wiki/Licensing/RSA diff --git a/data/Rdisc/Rdisc.yaml b/data/Rdisc/Rdisc.yaml deleted file mode 100644 index bcc5ca3..0000000 --- a/data/Rdisc/Rdisc.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: Rdisc -fedora_name: Rdisc License -name: Rdisc License -spdx_abbrev: Rdisc -spdx_name: Rdisc License -url: https://fedoraproject.org/wiki/Licensing/Rdisc_License diff --git a/data/RealNetworks/RPSL.yaml b/data/RealNetworks/RPSL.yaml deleted file mode 100644 index f81b222..0000000 --- a/data/RealNetworks/RPSL.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: RPSL -fedora_name: RealNetworks Public Source License V1.0 -name: RealNetworks Public Source License V1.0 -spdx_abbrev: RPSL-1.0 -spdx_name: RealNetworks Public Source License v1.0 -url: https://helixcommunity.org/content/rpsl diff --git a/data/Reciprocal/RPL-1.1.yaml b/data/Reciprocal/RPL-1.1.yaml deleted file mode 100644 index 26690a5..0000000 --- a/data/Reciprocal/RPL-1.1.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Reciprocal Public License 1.1 -spdx_abbrev: RPL-1.1 -spdx_name: Reciprocal Public License 1.1 -url: http://opensource.org/licenses/RPL-1.1 diff --git a/data/Reciprocal/RPL-1.5.yaml b/data/Reciprocal/RPL-1.5.yaml deleted file mode 100644 index e84e56d..0000000 --- a/data/Reciprocal/RPL-1.5.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Reciprocal Public License 1.5 -spdx_abbrev: RPL-1.5 -spdx_name: Reciprocal Public License 1.5 -url: http://www.opensource.org/licenses/RPL-1.5 diff --git a/data/Reciprocal/Reciprocal_Public_License.yaml b/data/Reciprocal/Reciprocal_Public_License.yaml deleted file mode 100644 index 53bc3ee..0000000 --- a/data/Reciprocal/Reciprocal_Public_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Reciprocal Public License -name: Reciprocal Public License -url: https://opensource.org/licenses/rpl.php diff --git a/data/Red_Hat/RHeCos-1.1.yaml b/data/Red_Hat/RHeCos-1.1.yaml deleted file mode 100644 index bc5684d..0000000 --- a/data/Red_Hat/RHeCos-1.1.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Red Hat eCos Public License v1.1 -spdx_abbrev: RHeCos-1.1 -spdx_name: Red Hat eCos Public License v1.1 -url: http://ecos.sourceware.org/old-license.html diff --git a/data/Ricoh/RSCPL.yaml b/data/Ricoh/RSCPL.yaml deleted file mode 100644 index ae02af5..0000000 --- a/data/Ricoh/RSCPL.yaml +++ /dev/null @@ -1,7 +0,0 @@ ---- -approved: no -fedora_name: Ricoh Source Code Public License -name: Ricoh Source Code Public License -spdx_abbrev: RSCPL -spdx_name: Ricoh Source Code Public License -url: http://www.opensource.org/licenses/RSCPL diff --git a/data/Romio/Romio.yaml b/data/Romio/Romio.yaml deleted file mode 100644 index de4e87c..0000000 --- a/data/Romio/Romio.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Romio -fedora_name: Romio License -name: Romio License -url: https://fedoraproject.org/wiki/Licensing/Romio_License diff --git a/data/Rsfs/Rsfs.yaml b/data/Rsfs/Rsfs.yaml deleted file mode 100644 index f1ef0b4..0000000 --- a/data/Rsfs/Rsfs.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Rsfs -fedora_name: Rsfs License -name: Rsfs License -url: https://fedoraproject.org/wiki/Licensing/Rsfs diff --git a/data/Ruby/Ruby.yaml b/data/Ruby/Ruby.yaml deleted file mode 100644 index 2ecf881..0000000 --- a/data/Ruby/Ruby.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: Ruby -fedora_name: Ruby License -name: Ruby License -spdx_abbrev: Ruby -spdx_name: Ruby License -url: http://www.ruby-lang.org/en/LICENSE.txt diff --git a/data/SCEA/SCEA.yaml b/data/SCEA/SCEA.yaml deleted file mode 100644 index e8e4396..0000000 --- a/data/SCEA/SCEA.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: SCEA -fedora_name: SCEA Shared Source License -name: SCEA Shared Source License -spdx_abbrev: SCEA -spdx_name: SCEA Shared Source License -url: http://research.scea.com/scea_shared_source_license.html diff --git a/data/SCRIP/SCRIP.yaml b/data/SCRIP/SCRIP.yaml deleted file mode 100644 index a8fe094..0000000 --- a/data/SCRIP/SCRIP.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: SCRIP -fedora_name: SCRIP License -name: SCRIP License -url: https://fedoraproject.org/wiki/Licensing/SCRIP diff --git a/data/SGI/SGI-B-1.0.yaml b/data/SGI/SGI-B-1.0.yaml deleted file mode 100644 index c7ac97a..0000000 --- a/data/SGI/SGI-B-1.0.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: SGI Free Software License B v1.0 -spdx_abbrev: SGI-B-1.0 -spdx_name: SGI Free Software License B v1.0 -url: http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html diff --git a/data/SGI/SGI-B-1.1.yaml b/data/SGI/SGI-B-1.1.yaml deleted file mode 100644 index e988060..0000000 --- a/data/SGI/SGI-B-1.1.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: SGI Free Software License B v1.1 -spdx_abbrev: SGI-B-1.1 -spdx_name: SGI Free Software License B v1.1 -url: http://oss.sgi.com/projects/FreeB/ diff --git a/data/SGI/SGI_Free_Software_License_B_1.1_or_older.yaml b/data/SGI/SGI_Free_Software_License_B_1.1_or_older.yaml deleted file mode 100644 index 4d2018d..0000000 --- a/data/SGI/SGI_Free_Software_License_B_1.1_or_older.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: SGI Free Software License B 1.1 or older -name: SGI Free Software License B 1.1 or older -url: http://oss.sgi.com/projects/FreeB/ diff --git a/data/SGI/SGI_GLX_Public_License_1.0.yaml b/data/SGI/SGI_GLX_Public_License_1.0.yaml deleted file mode 100644 index 03ace09..0000000 --- a/data/SGI/SGI_GLX_Public_License_1.0.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: SGI GLX Public License 1.0 -name: SGI GLX Public License 1.0 -url: https://fedoraproject.org/wiki/Licensing/GLX_Public_License diff --git a/data/SLIB/SLIB.yaml b/data/SLIB/SLIB.yaml deleted file mode 100644 index 48fecca..0000000 --- a/data/SLIB/SLIB.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: SLIB -fedora_name: SLIB License -name: SLIB License -url: http://people.csail.mit.edu/jaffer/SLIB_COPYING.txt diff --git a/data/SMPPL/SMPPL.yaml b/data/SMPPL/SMPPL.yaml deleted file mode 100644 index 5d9603f..0000000 --- a/data/SMPPL/SMPPL.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Secure Messaging Protocol Public License -spdx_abbrev: SMPPL -spdx_name: Secure Messaging Protocol Public License -url: https://github.com/dcblake/SMP/blob/master/Documentation/License.txt diff --git a/data/SNIA/SNIA.yaml b/data/SNIA/SNIA.yaml deleted file mode 100644 index ef6666c..0000000 --- a/data/SNIA/SNIA.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: SNIA -fedora_name: SNIA Public License 1.1 -name: SNIA Public License 1.1 -spdx_abbrev: SNIA -spdx_name: SNIA Public License 1.1 -url: https://fedoraproject.org/wiki/Licensing/SNIA_Public_License diff --git a/data/SSPL/SSPL-1.0.yaml b/data/SSPL/SSPL-1.0.yaml deleted file mode 100644 index a3e47f5..0000000 --- a/data/SSPL/SSPL-1.0.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: no -name: Server Side Public License v1 (SSPL) -spdx_abbrev: SSPL-1.0 -spdx_name: Server Side Public License, v 1 -url: https://fedoraproject.org/wiki/Licensing/SSPL diff --git a/data/STIX/STIX.yaml b/data/STIX/STIX.yaml deleted file mode 100644 index 6fa8824..0000000 --- a/data/STIX/STIX.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: STIX -fedora_name: STIX Fonts User License -name: STIX Fonts User License -url: https://fedoraproject.org/wiki/Licensing/STIXFontsUserLicense diff --git a/data/SWL/SWL.yaml b/data/SWL/SWL.yaml deleted file mode 100644 index 15d9f72..0000000 --- a/data/SWL/SWL.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: SWL -fedora_name: Scheme Widget Library (SWL) Software License Agreement -name: Scheme Widget Library (SWL) Software License Agreement -spdx_abbrev: SWL -spdx_name: Scheme Widget Library (SWL) Software License Agreement -url: https://fedoraproject.org/wiki/Licensing/SWL diff --git a/data/Sax/SAX-PD.yaml b/data/Sax/SAX-PD.yaml deleted file mode 100644 index 6ef9345..0000000 --- a/data/Sax/SAX-PD.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -name: Sax Public Domain Notice -spdx_abbrev: SAX-PD -spdx_name: Sax Public Domain Notice -url: http://www.saxproject.org/copying.html diff --git a/data/Saxpath/Saxpath.yaml b/data/Saxpath/Saxpath.yaml deleted file mode 100644 index dba95f7..0000000 --- a/data/Saxpath/Saxpath.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: Saxpath -fedora_name: Saxpath License -name: Saxpath License -spdx_abbrev: Saxpath -spdx_name: Saxpath License -url: https://fedoraproject.org/wiki/Licensing/Saxpath_License diff --git a/data/SciTech/STMPL.yaml b/data/SciTech/STMPL.yaml deleted file mode 100644 index 09d8d9f..0000000 --- a/data/SciTech/STMPL.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: STMPL -fedora_name: SciTech MGL Public License -name: SciTech MGL Public License -url: https://fedoraproject.org/wiki/Licensing/STMPL diff --git a/data/Scilab/Scilab_License_OLD.yaml b/data/Scilab/Scilab_License_OLD.yaml deleted file mode 100644 index 3b04914..0000000 --- a/data/Scilab/Scilab_License_OLD.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Scilab License (OLD) -name: Scilab License (OLD) -url: https://fedoraproject.org/wiki/Licensing/Scilab_License_Old diff --git a/data/Sendmail/Sendmail.yaml b/data/Sendmail/Sendmail.yaml deleted file mode 100644 index 2609ab3..0000000 --- a/data/Sendmail/Sendmail.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: Sendmail -fedora_name: Sendmail License -name: Sendmail License -spdx_abbrev: Sendmail -spdx_name: Sendmail License -url: http://www.sendmail.com/pdfs/open_source/sendmail_license.pdf diff --git a/data/Sequence/Sequence.yaml b/data/Sequence/Sequence.yaml deleted file mode 100644 index 5065b98..0000000 --- a/data/Sequence/Sequence.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Sequence -fedora_name: Sequence Library License -name: Sequence Library License -url: https://fedoraproject.org/wiki/Licensing/SequenceLibraryLicense diff --git a/data/SimPL/SimPL-2.0.yaml b/data/SimPL/SimPL-2.0.yaml deleted file mode 100644 index 8b612ee..0000000 --- a/data/SimPL/SimPL-2.0.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Simple Public License 2.0 -spdx_abbrev: SimPL-2.0 -spdx_name: Simple Public License 2.0 -url: http://www.opensource.org/licenses/SimPL-2.0 diff --git a/data/Siren14/Siren14_License_Agreement.yaml b/data/Siren14/Siren14_License_Agreement.yaml deleted file mode 100644 index 29a6c50..0000000 --- a/data/Siren14/Siren14_License_Agreement.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Siren14 License Agreement -name: Siren14 License Agreement -url: https://fedoraproject.org/wiki/Licensing/Siren14_Licensing_Agreement diff --git a/data/Sleepycat/Sleepycat.yaml b/data/Sleepycat/Sleepycat.yaml deleted file mode 100644 index 7215bca..0000000 --- a/data/Sleepycat/Sleepycat.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: Sleepycat -fedora_name: Sleepycat Software Product License -name: Sleepycat Software Product License -spdx_abbrev: Sleepycat -spdx_name: Sleepycat License -url: http://www.opensource.org/licenses/Sleepycat diff --git a/data/Spencer/Spencer-86.yaml b/data/Spencer/Spencer-86.yaml deleted file mode 100644 index 502d981..0000000 --- a/data/Spencer/Spencer-86.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Spencer License 86 -spdx_abbrev: Spencer-86 -spdx_name: Spencer License 86 -url: https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License diff --git a/data/Spencer/Spencer-99.yaml b/data/Spencer/Spencer-99.yaml deleted file mode 100644 index 053d6b3..0000000 --- a/data/Spencer/Spencer-99.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Spencer License 99 -spdx_abbrev: Spencer-99 -spdx_name: Spencer License 99 -url: http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c diff --git a/data/Spin/Spin_Commercial_License.yaml b/data/Spin/Spin_Commercial_License.yaml deleted file mode 100644 index 37677fc..0000000 --- a/data/Spin/Spin_Commercial_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Spin Commercial License -name: Spin Commercial License -url: http://www.spinroot.com/spin/spin_license.html diff --git a/data/Squeak/Squeak_License.yaml b/data/Squeak/Squeak_License.yaml deleted file mode 100644 index cec19ef..0000000 --- a/data/Squeak/Squeak_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Squeak License -name: Squeak License -url: http://squeak.org/SqueakLicense/ diff --git a/data/SugarCRM/SugarCRM-1.1.3.yaml b/data/SugarCRM/SugarCRM-1.1.3.yaml deleted file mode 100644 index fd3deca..0000000 --- a/data/SugarCRM/SugarCRM-1.1.3.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: SugarCRM Public License v1.1.3 -spdx_abbrev: SugarCRM-1.1.3 -spdx_name: SugarCRM Public License v1.1.3 -url: http://www.sugarcrm.com/crm/SPL diff --git a/data/Sun/SISSL-1.2.yaml b/data/Sun/SISSL-1.2.yaml deleted file mode 100644 index 5bc50ba..0000000 --- a/data/Sun/SISSL-1.2.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Sun Industry Standards Source License v1.2 -spdx_abbrev: SISSL-1.2 -spdx_name: Sun Industry Standards Source License v1.2 -url: http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html diff --git a/data/Sun/SISSL.yaml b/data/Sun/SISSL.yaml deleted file mode 100644 index f62ee36..0000000 --- a/data/Sun/SISSL.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: SISSL -fedora_name: Sun Industry Standards Source License -name: Sun Industry Standards Source License v1.1 -spdx_abbrev: SISSL -spdx_name: Sun Industry Standards Source License v1.1 -url: http://www.openoffice.org/licenses/sissl_license.html diff --git a/data/Sun/SPL.yaml b/data/Sun/SPL.yaml deleted file mode 100644 index 626dc29..0000000 --- a/data/Sun/SPL.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: SPL -fedora_name: Sun Public License -name: Sun Public License v1.0 -spdx_abbrev: SPL-1.0 -spdx_name: Sun Public License v1.0 -url: http://www.opensource.org/licenses/SPL-1.0 diff --git a/data/Sun/Sun_Binary_Code_License_Agreement.yaml b/data/Sun/Sun_Binary_Code_License_Agreement.yaml deleted file mode 100644 index a4a3724..0000000 --- a/data/Sun/Sun_Binary_Code_License_Agreement.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Sun Binary Code License Agreement -name: Sun Binary Code License Agreement -url: https://fedoraproject.org/wiki/Licensing/Sun_Binary_Code_License_Agreement diff --git a/data/Sun/Sun_Community_Source_License.yaml b/data/Sun/Sun_Community_Source_License.yaml deleted file mode 100644 index ccb874b..0000000 --- a/data/Sun/Sun_Community_Source_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Sun Community Source License -name: Sun Community Source License -url: http://www.sun.com/software/communitysource/ diff --git a/data/Sun/Sun_RPC_License.yaml b/data/Sun/Sun_RPC_License.yaml deleted file mode 100644 index 002c5aa..0000000 --- a/data/Sun/Sun_RPC_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Sun RPC License -name: Sun RPC License -url: http://www.mibsoftware.com/librock/librock/license/ssscfr.txt diff --git a/data/Sun/Sun_Solaris_Source_Code_Foundation_Release_License.yaml b/data/Sun/Sun_Solaris_Source_Code_Foundation_Release_License.yaml deleted file mode 100644 index 4d6a9af..0000000 --- a/data/Sun/Sun_Solaris_Source_Code_Foundation_Release_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Sun Solaris Source Code (Foundation Release) License -name: Sun Solaris Source Code (Foundation Release) License -url: http://www.mibsoftware.com/librock/librock/license/ssscfr.txt diff --git a/data/SystemC/SystemC_Open_Source_License.yaml b/data/SystemC/SystemC_Open_Source_License.yaml deleted file mode 100644 index 1ba2414..0000000 --- a/data/SystemC/SystemC_Open_Source_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: SystemC Open Source License -name: SystemC Open Source License -url: http://www.systemc.org/about/org_docs/license/ diff --git a/data/TCGL/TCGL.yaml b/data/TCGL/TCGL.yaml deleted file mode 100644 index 5969ba0..0000000 --- a/data/TCGL/TCGL.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: TCGL -fedora_name: Trusted Computing Group License -name: Trusted Computing Group License -url: https://fedoraproject.org/wiki/Licensing/TCGL diff --git a/data/TCL/TCL.yaml b/data/TCL/TCL.yaml deleted file mode 100644 index f2d5d5f..0000000 --- a/data/TCL/TCL.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: TCL -fedora_name: TCL/TK License -name: TCL/TK License -spdx_abbrev: TCL -spdx_name: TCL/TK License -url: http://www.tcl.tk/software/tcltk/license.html diff --git a/data/TCP-wrappers/TCP-wrappers.yaml b/data/TCP-wrappers/TCP-wrappers.yaml deleted file mode 100644 index 37734a0..0000000 --- a/data/TCP-wrappers/TCP-wrappers.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: TCP Wrappers License -spdx_abbrev: TCP-wrappers -spdx_name: TCP Wrappers License -url: http://rc.quest.com/topics/openssh/license.php#tcpwrappers diff --git a/data/TGPPL/TGPPL.yaml b/data/TGPPL/TGPPL.yaml deleted file mode 100644 index 3b0437a..0000000 --- a/data/TGPPL/TGPPL.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: TGPPL -fedora_name: Transitive Grace Period Public Licence -name: Transitive Grace Period Public Licence -url: https://fedoraproject.org/wiki/Licensing/TGPPL diff --git a/data/TMate/TMate.yaml b/data/TMate/TMate.yaml deleted file mode 100644 index a0c1437..0000000 --- a/data/TMate/TMate.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: TMate -fedora_name: TMate Open Source License -name: TMate Open Source License -spdx_abbrev: TMate -spdx_name: TMate Open Source License -url: http://svnkit.com/license.html diff --git a/data/TORQUE/TORQUE_v2.5+_Software_License_v1.0.yaml b/data/TORQUE/TORQUE_v2.5+_Software_License_v1.0.yaml deleted file mode 100644 index 737ae1c..0000000 --- a/data/TORQUE/TORQUE_v2.5+_Software_License_v1.0.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -approved: no -fedora_name: TORQUE v2.5+ Software License v1.0 -name: TORQUE v2.5+ Software License v1.0 diff --git a/data/TORQUE/TORQUEv1.1.yaml b/data/TORQUE/TORQUEv1.1.yaml deleted file mode 100644 index 055c7fe..0000000 --- a/data/TORQUE/TORQUEv1.1.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: TORQUEv1.1 -fedora_name: TORQUE v2.5+ Software License v1.1 -name: TORQUE v2.5+ Software License v1.1 -spdx_abbrev: TORQUE-1.1 -spdx_name: TORQUE v2.5+ Software License v1.1 -url: https://fedoraproject.org/wiki/Licensing/TORQUEv1.1 diff --git a/data/TOSL/TOSL.yaml b/data/TOSL/TOSL.yaml deleted file mode 100644 index 0ceb264..0000000 --- a/data/TOSL/TOSL.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: TOSL -fedora_name: Trusster Open Source License -name: Trusster Open Source License -spdx_abbrev: TOSL -spdx_name: Trusster Open Source License -url: https://fedoraproject.org/wiki/Licensing/TOSL diff --git a/data/TPDL/TPDL.yaml b/data/TPDL/TPDL.yaml deleted file mode 100644 index 8eeef26..0000000 --- a/data/TPDL/TPDL.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: TPDL -fedora_name: Time::ParseDate License -name: Time::ParseDate License -url: https://fedoraproject.org/wiki/Licensing/TPDL diff --git a/data/TPL/TPL.yaml b/data/TPL/TPL.yaml deleted file mode 100644 index 827c74f..0000000 --- a/data/TPL/TPL.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: TPL -fedora_name: Thor Public License -name: Thor Public License -url: https://fedoraproject.org/wiki/Licensing:ThorPublicLicense?rd=Licensing/ThorPublicLicense diff --git a/data/TTWL/TTWL.yaml b/data/TTWL/TTWL.yaml deleted file mode 100644 index 6e17499..0000000 --- a/data/TTWL/TTWL.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: TTWL -fedora_name: Text-Tabs+Wrap License -name: Text-Tabs+Wrap License -url: https://fedoraproject.org/wiki/Licensing/TTWL diff --git a/data/Teeworlds/Teeworlds.yaml b/data/Teeworlds/Teeworlds.yaml deleted file mode 100644 index 36f7a5a..0000000 --- a/data/Teeworlds/Teeworlds.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Teeworlds -fedora_name: Teeworlds License -name: Teeworlds License -url: https://fedoraproject.org/wiki/Licensing:Teeworlds?rd=Licensing/Teeworlds diff --git a/data/Terracotta/Terracotta_Public_License_1.0.yaml b/data/Terracotta/Terracotta_Public_License_1.0.yaml deleted file mode 100644 index 182e69b..0000000 --- a/data/Terracotta/Terracotta_Public_License_1.0.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Terracotta Public License 1.0 -name: Terracotta Public License 1.0 -url: http://svn.terracotta.org/svn/ehcache/tags/ehcache-2.9.0/distribution/src/main/assembly/root/licenses/EHCACHE-TERRACOTTA-LICENSE.txt diff --git a/data/Threeparttable/Threeparttable.yaml b/data/Threeparttable/Threeparttable.yaml deleted file mode 100644 index 6a42347..0000000 --- a/data/Threeparttable/Threeparttable.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Threeparttable -fedora_name: Threeparttable License -name: Threeparttable License -url: https://fedoraproject.org/wiki/Licensing/Threeparttable diff --git a/data/Tolua/Tolua.yaml b/data/Tolua/Tolua.yaml deleted file mode 100644 index 3497653..0000000 --- a/data/Tolua/Tolua.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Tolua -fedora_name: Tolua License -name: Tolua License -url: https://fedoraproject.org/wiki/Licensing/Tolua diff --git a/data/TrueCrypt/TrueCrypt_License.yaml b/data/TrueCrypt/TrueCrypt_License.yaml deleted file mode 100644 index bfb9ff4..0000000 --- a/data/TrueCrypt/TrueCrypt_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: TrueCrypt License -name: TrueCrypt License -url: http://truecrypt.sourceforge.net/ diff --git a/data/Tumbolia/Tumbolia.yaml b/data/Tumbolia/Tumbolia.yaml deleted file mode 100644 index a155585..0000000 --- a/data/Tumbolia/Tumbolia.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Tumbolia -fedora_name: Tumbolia Public License -name: Tumbolia Public License -url: https://fedoraproject.org/wiki/Licensing/Tumbolia diff --git a/data/UCAR/UCAR.yaml b/data/UCAR/UCAR.yaml deleted file mode 100644 index 98e265a..0000000 --- a/data/UCAR/UCAR.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: UCAR -fedora_name: UCAR License -name: UCAR License -url: https://fedoraproject.org/wiki/Licensing/UCAR diff --git a/data/UK/OGL.yaml b/data/UK/OGL.yaml deleted file mode 100644 index 14fb277..0000000 --- a/data/UK/OGL.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: OGL -fedora_name: Open Government License -name: Open Government License -url: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/ diff --git a/data/Ubuntu/Ubuntu_Font_License.yaml b/data/Ubuntu/Ubuntu_Font_License.yaml deleted file mode 100644 index f95988d..0000000 --- a/data/Ubuntu/Ubuntu_Font_License.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -approved: no -name: Ubuntu Font License -url: https://fedoraproject.org/wiki/Licensing/UbuntuFontLicense diff --git a/data/Unicode/UCD.yaml b/data/Unicode/UCD.yaml deleted file mode 100644 index 80867a3..0000000 --- a/data/Unicode/UCD.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: UCD -fedora_name: Unicode Character Database Terms Of Use -name: Unicode Character Database Terms Of Use -url: https://fedoraproject.org/wiki/Licensing:UCD?rd=Licensing/UCD diff --git a/data/Unicode/Unicode-DFS-2015.yaml b/data/Unicode/Unicode-DFS-2015.yaml deleted file mode 100644 index 3f850d6..0000000 --- a/data/Unicode/Unicode-DFS-2015.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Unicode License Agreement - Data Files and Software (2015) -spdx_abbrev: Unicode-DFS-2015 -spdx_name: Unicode License Agreement - Data Files and Software (2015) -url: https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html diff --git a/data/Unicode/Unicode-DFS-2016.yaml b/data/Unicode/Unicode-DFS-2016.yaml deleted file mode 100644 index 62fc06c..0000000 --- a/data/Unicode/Unicode-DFS-2016.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Unicode License Agreement - Data Files and Software (2016) -spdx_abbrev: Unicode-DFS-2016 -spdx_name: Unicode License Agreement - Data Files and Software (2016) -url: http://www.unicode.org/copyright.html diff --git a/data/Unicode/Unicode-TOU.yaml b/data/Unicode/Unicode-TOU.yaml deleted file mode 100644 index b129908..0000000 --- a/data/Unicode/Unicode-TOU.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Unicode Terms of Use -spdx_abbrev: Unicode-TOU -spdx_name: Unicode Terms of Use -url: http://www.unicode.org/copyright.html diff --git a/data/Unicode/Unicode.yaml b/data/Unicode/Unicode.yaml deleted file mode 100644 index 85a675c..0000000 --- a/data/Unicode/Unicode.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Unicode -fedora_name: Unicode License -name: Unicode License -url: https://fedoraproject.org/wiki/Licensing/Unicode diff --git a/data/Universal/UPL.yaml b/data/Universal/UPL.yaml deleted file mode 100644 index 099a508..0000000 --- a/data/Universal/UPL.yaml +++ /dev/null @@ -1,7 +0,0 @@ ---- -approved: yes -fedora_abbrev: UPL -name: Universal Permissive License v1.0 -spdx_abbrev: UPL-1.0 -spdx_name: Universal Permissive License v1.0 -url: http://opensource.org/licenses/UPL diff --git a/data/University_of_Utah/University_of_Utah_Public_License.yaml b/data/University_of_Utah/University_of_Utah_Public_License.yaml deleted file mode 100644 index 8fb9916..0000000 --- a/data/University_of_Utah/University_of_Utah_Public_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: University of Utah Public License -name: University of Utah Public License -url: http://www.cs.utah.edu/~gk/teem/txt/LICENSE.txt diff --git a/data/University_of_Washington/University_of_Washington_Free_Fork_License.yaml b/data/University_of_Washington/University_of_Washington_Free_Fork_License.yaml deleted file mode 100644 index 5c6c3cb..0000000 --- a/data/University_of_Washington/University_of_Washington_Free_Fork_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: University of Washington Free Fork License -name: University of Washington Free Fork License -url: https://fedoraproject.org/wiki/Licensing:UofWFreeFork?rd=Licensing/UofWFreeFork diff --git a/data/VOSTROM/VOSTROM.yaml b/data/VOSTROM/VOSTROM.yaml deleted file mode 100644 index f24a077..0000000 --- a/data/VOSTROM/VOSTROM.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: VOSTROM -fedora_name: VOSTROM Public License for Open Source -name: VOSTROM Public License for Open Source -spdx_abbrev: VOSTROM -spdx_name: VOSTROM Public License for Open Source -url: https://fedoraproject.org/wiki/Licensing/VOSTROM diff --git a/data/Verbatim/Verbatim.yaml b/data/Verbatim/Verbatim.yaml deleted file mode 100644 index 78db531..0000000 --- a/data/Verbatim/Verbatim.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Verbatim -fedora_name: Verbatim License -name: Verbatim License -url: https://fedoraproject.org/wiki/Licensing/VerbatimLicense diff --git a/data/Vim/Vim.yaml b/data/Vim/Vim.yaml deleted file mode 100644 index 83662e3..0000000 --- a/data/Vim/Vim.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: Vim -fedora_name: Vim License -name: Vim License -spdx_abbrev: Vim -spdx_name: Vim License -url: http://vimdoc.sourceforge.net/htmldoc/uganda.html diff --git a/data/Vita_Nuova/VNLSL.yaml b/data/Vita_Nuova/VNLSL.yaml deleted file mode 100644 index 6aa3b55..0000000 --- a/data/Vita_Nuova/VNLSL.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: VNLSL -fedora_name: Vita Nuova Liberal Source License -name: Vita Nuova Liberal Source License -url: https://fedoraproject.org/wiki/Licensing/Vita_Nuova_Liberal_Source_License diff --git a/data/Vovida/VSL.yaml b/data/Vovida/VSL.yaml deleted file mode 100644 index 55f09cd..0000000 --- a/data/Vovida/VSL.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: VSL -fedora_name: Vovida Software License v. 1.0 -name: Vovida Software License v1.0 -spdx_abbrev: VSL-1.0 -spdx_name: Vovida Software License v1.0 -url: http://www.opensource.org/licenses/VSL-1.0 diff --git a/data/W3C/W3C-19980720.yaml b/data/W3C/W3C-19980720.yaml deleted file mode 100644 index ddaca57..0000000 --- a/data/W3C/W3C-19980720.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: W3C Software Notice and License (1998-07-20) -spdx_abbrev: W3C-19980720 -spdx_name: W3C Software Notice and License (1998-07-20) -url: http://www.w3.org/Consortium/Legal/copyright-software-19980720.html diff --git a/data/W3C/W3C-20150513.yaml b/data/W3C/W3C-20150513.yaml deleted file mode 100644 index afb4e6e..0000000 --- a/data/W3C/W3C-20150513.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: W3C Software Notice and Document License (2015-05-13) -spdx_abbrev: W3C-20150513 -spdx_name: W3C Software Notice and Document License (2015-05-13) -url: https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document diff --git a/data/W3C/W3C.yaml b/data/W3C/W3C.yaml deleted file mode 100644 index a4fada5..0000000 --- a/data/W3C/W3C.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: W3C -fedora_name: W3C Software Notice and License -name: W3C Software Notice and License (2002-12-31) -spdx_abbrev: W3C -spdx_name: W3C Software Notice and License (2002-12-31) -url: http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html diff --git a/data/W3C/W3C_Documentation_License.yaml b/data/W3C/W3C_Documentation_License.yaml deleted file mode 100644 index b4c56dc..0000000 --- a/data/W3C/W3C_Documentation_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: W3C Documentation License -name: W3C Documentation License -url: http://www.w3.org/Consortium/Legal/copyright-documents diff --git a/data/WTFPL/WTFPL.yaml b/data/WTFPL/WTFPL.yaml deleted file mode 100644 index 7de1f8e..0000000 --- a/data/WTFPL/WTFPL.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: WTFPL -fedora_name: Do What The F*ck You Want To Public License -name: Do What The F*ck You Want To Public License -spdx_abbrev: WTFPL -spdx_name: Do What The F*ck You Want To Public License -url: https://fedoraproject.org/wiki/Licensing/WTFPL diff --git a/data/Wadalab/Wadalab.yaml b/data/Wadalab/Wadalab.yaml deleted file mode 100644 index 1e0985b..0000000 --- a/data/Wadalab/Wadalab.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Wadalab -fedora_name: Wadalab Font License -name: Wadalab Font License -url: https://fedoraproject.org/wiki/Licensing/Wadalab diff --git a/data/Watcom/Watcom-1.0.yaml b/data/Watcom/Watcom-1.0.yaml deleted file mode 100644 index 86c7dfc..0000000 --- a/data/Watcom/Watcom-1.0.yaml +++ /dev/null @@ -1,7 +0,0 @@ ---- -approved: no -fedora_name: Sybase Open Watcom Public License 1.0 -name: Sybase Open Watcom Public License 1.0 -spdx_abbrev: Watcom-1.0 -spdx_name: Sybase Open Watcom Public License 1.0 -url: http://www.opensource.org/licenses/Watcom-1.0 diff --git a/data/Webmin/Webmin.yaml b/data/Webmin/Webmin.yaml deleted file mode 100644 index f455198..0000000 --- a/data/Webmin/Webmin.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: Webmin -fedora_name: Webmin License -name: Webmin License -url: https://fedoraproject.org/wiki/Licensing/Webmin diff --git a/data/Wsuipa/Wsuipa.yaml b/data/Wsuipa/Wsuipa.yaml deleted file mode 100644 index 61a4b7a..0000000 --- a/data/Wsuipa/Wsuipa.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: Wsuipa -fedora_name: Wsuipa License -name: Wsuipa License -spdx_abbrev: Wsuipa -spdx_name: Wsuipa License -url: https://fedoraproject.org/wiki/Licensing/Wsuipa diff --git a/data/XANO/XANO.yaml b/data/XANO/XANO.yaml deleted file mode 100644 index 60e7ea3..0000000 --- a/data/XANO/XANO.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: XANO -fedora_name: XANO Mincho Font License -name: XANO Mincho Font License -url: https://fedoraproject.org/wiki/Licensing/MinchoFontLicense diff --git a/data/XFree86/X11.yaml b/data/XFree86/X11.yaml deleted file mode 100644 index 8817e6d..0000000 --- a/data/XFree86/X11.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: X11 License -spdx_abbrev: X11 -spdx_name: X11 License -url: http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3 diff --git a/data/XFree86/XFree86-1.1.yaml b/data/XFree86/XFree86-1.1.yaml deleted file mode 100644 index c29a348..0000000 --- a/data/XFree86/XFree86-1.1.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: XFree86 License 1.1 -spdx_abbrev: XFree86-1.1 -spdx_name: XFree86 License 1.1 -url: http://www.xfree86.org/current/LICENSE4.html diff --git a/data/XPP/xpp.yaml b/data/XPP/xpp.yaml deleted file mode 100644 index fce309b..0000000 --- a/data/XPP/xpp.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: xpp -fedora_name: XPP License -name: XPP License -spdx_abbrev: xpp -spdx_name: XPP License -url: https://fedoraproject.org/wiki/Licensing/xpp diff --git a/data/XSkat/XSkat.yaml b/data/XSkat/XSkat.yaml deleted file mode 100644 index a1055af..0000000 --- a/data/XSkat/XSkat.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: XSkat -fedora_name: XSkat License -name: XSkat License -spdx_abbrev: XSkat -spdx_name: XSkat License -url: https://fedoraproject.org/wiki/Licensing/XSkat_License diff --git a/data/Xerox/Xerox.yaml b/data/Xerox/Xerox.yaml deleted file mode 100644 index 511d93b..0000000 --- a/data/Xerox/Xerox.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: Xerox -fedora_name: Xerox License -name: Xerox License -spdx_abbrev: Xerox -spdx_name: Xerox License -url: https://fedoraproject.org/wiki/Licensing/Xerox diff --git a/data/Xnet/Xnet.yaml b/data/Xnet/Xnet.yaml deleted file mode 100644 index 9ca873b..0000000 --- a/data/Xnet/Xnet.yaml +++ /dev/null @@ -1,7 +0,0 @@ ---- -approved: no -fedora_name: X.Net License -name: X.Net License -spdx_abbrev: Xnet -spdx_name: X.Net License -url: http://opensource.org/licenses/Xnet diff --git a/data/Yahoo/YPL-1.0.yaml b/data/Yahoo/YPL-1.0.yaml deleted file mode 100644 index 5b65ba0..0000000 --- a/data/Yahoo/YPL-1.0.yaml +++ /dev/null @@ -1,7 +0,0 @@ ---- -approved: no -fedora_name: Yahoo Public License 1.0 -name: Yahoo! Public License v1.0 -spdx_abbrev: YPL-1.0 -spdx_name: Yahoo! Public License v1.0 -url: http://www.zimbra.com/license/yahoo_public_license_1.0.html diff --git a/data/Yahoo/YPLv1.1.yaml b/data/Yahoo/YPLv1.1.yaml deleted file mode 100644 index 7fd8cc4..0000000 --- a/data/Yahoo/YPLv1.1.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: YPLv1.1 -fedora_name: Yahoo Public License v 1.1 -name: Yahoo! Public License v1.1 -spdx_abbrev: YPL-1.1 -spdx_name: Yahoo! Public License v1.1 -url: http://www.zimbra.com/license/yahoo_public_license_1.1.html diff --git a/data/Zed/Zed.yaml b/data/Zed/Zed.yaml deleted file mode 100644 index 82e057d..0000000 --- a/data/Zed/Zed.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: Zed -fedora_name: Zed License -name: Zed License -spdx_abbrev: Zed -spdx_name: Zed License -url: https://fedoraproject.org/wiki/Licensing/Zed diff --git a/data/Zend/Zend.yaml b/data/Zend/Zend.yaml deleted file mode 100644 index d7321e5..0000000 --- a/data/Zend/Zend.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: Zend -fedora_name: Zend License v2.0 -name: Zend License v2.0 -spdx_abbrev: Zend-2.0 -spdx_name: Zend License v2.0 -url: https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt diff --git a/data/Zimbra/Zimbra-1.3.yaml b/data/Zimbra/Zimbra-1.3.yaml deleted file mode 100644 index 80d061e..0000000 --- a/data/Zimbra/Zimbra-1.3.yaml +++ /dev/null @@ -1,7 +0,0 @@ ---- -approved: no -fedora_name: Zimbra Public License 1.3 -name: Zimbra Public License v1.3 -spdx_abbrev: Zimbra-1.3 -spdx_name: Zimbra Public License v1.3 -url: http://www.zimbra.com/license/zimbra-public-license-1-3.html diff --git a/data/Zimbra/Zimbra-1.4.yaml b/data/Zimbra/Zimbra-1.4.yaml deleted file mode 100644 index 84eb737..0000000 --- a/data/Zimbra/Zimbra-1.4.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Zimbra Public License v1.4 -spdx_abbrev: Zimbra-1.4 -spdx_name: Zimbra Public License v1.4 -url: http://www.zimbra.com/legal/zimbra-public-license-1-4 diff --git a/data/Zope/ZPL-1.1.yaml b/data/Zope/ZPL-1.1.yaml deleted file mode 100644 index 7e57b9a..0000000 --- a/data/Zope/ZPL-1.1.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: Zope Public License 1.1 -spdx_abbrev: ZPL-1.1 -spdx_name: Zope Public License 1.1 -url: http://old.zope.org/Resources/License/ZPL-1.1 diff --git a/data/Zope/ZPLv1.0.yaml b/data/Zope/ZPLv1.0.yaml deleted file mode 100644 index d712da5..0000000 --- a/data/Zope/ZPLv1.0.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: ZPLv1.0 -fedora_name: Zope Public License v 1.0 -name: Zope Public License v 1.0 -url: http://old.zope.org/Resources/License/ZPL-1.1 diff --git a/data/Zope/ZPLv2.0.yaml b/data/Zope/ZPLv2.0.yaml deleted file mode 100644 index d4a16db..0000000 --- a/data/Zope/ZPLv2.0.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: ZPLv2.0 -fedora_name: Zope Public License v 2.0 -name: Zope Public License v 2.0 -spdx_abbrev: ZPL-2.0 -spdx_name: Zope Public License 2.0 -url: http://old.zope.org/Resources/License/ZPL-2.0 diff --git a/data/Zope/ZPLv2.1.yaml b/data/Zope/ZPLv2.1.yaml deleted file mode 100644 index 0f9cdeb..0000000 --- a/data/Zope/ZPLv2.1.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: ZPLv2.1 -fedora_name: Zope Public License v 2.1 -name: Zope Public License v 2.1 -spdx_abbrev: ZPL-2.1 -spdx_name: Zope Public License 2.1 -url: http://old.zope.org/Resources/ZPL/ diff --git a/data/bzip2/bzip2-1.0.5.yaml b/data/bzip2/bzip2-1.0.5.yaml deleted file mode 100644 index a3c0202..0000000 --- a/data/bzip2/bzip2-1.0.5.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: bzip2 and libbzip2 License v1.0.5 -spdx_abbrev: bzip2-1.0.5 -spdx_name: bzip2 and libbzip2 License v1.0.5 -url: http://bzip.org/1.0.5/bzip2-manual-1.0.5.html diff --git a/data/bzip2/bzip2-1.0.6.yaml b/data/bzip2/bzip2-1.0.6.yaml deleted file mode 100644 index 002ae89..0000000 --- a/data/bzip2/bzip2-1.0.6.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: bzip2 and libbzip2 License v1.0.6 -spdx_abbrev: bzip2-1.0.6 -spdx_name: bzip2 and libbzip2 License v1.0.6 -url: https://github.com/asimonov-im/bzip2/blob/master/LICENSE diff --git a/data/curl/curl.yaml b/data/curl/curl.yaml deleted file mode 100644 index 5938fd6..0000000 --- a/data/curl/curl.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: curl License -spdx_abbrev: curl -spdx_name: curl License -url: https://github.com/bagder/curl/blob/master/COPYING diff --git a/data/diffmark/diffmark.yaml b/data/diffmark/diffmark.yaml deleted file mode 100644 index e174635..0000000 --- a/data/diffmark/diffmark.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: diffmark -fedora_name: diffmark license -name: diffmark license -spdx_abbrev: diffmark -spdx_name: diffmark license -url: https://fedoraproject.org/wiki/Licensing/diffmark diff --git a/data/dmoz/Open_Directory_License.yaml b/data/dmoz/Open_Directory_License.yaml deleted file mode 100644 index 2b61f11..0000000 --- a/data/dmoz/Open_Directory_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: Open Directory License -name: Open Directory License -url: http://dmoz.org/license.html diff --git a/data/dvipdfm/dvipdfm.yaml b/data/dvipdfm/dvipdfm.yaml deleted file mode 100644 index ebd3b17..0000000 --- a/data/dvipdfm/dvipdfm.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: dvipdfm -fedora_name: dvipdfm License -name: dvipdfm License -spdx_abbrev: dvipdfm -spdx_name: dvipdfm License -url: https://fedoraproject.org/wiki/Licensing/dvipdfm diff --git a/data/eCos/eCos.yaml b/data/eCos/eCos.yaml deleted file mode 100644 index ff76b2a..0000000 --- a/data/eCos/eCos.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: eCos -fedora_name: eCos License v2.0 -name: eCos license version 2.0 -spdx_abbrev: eCos-2.0 -spdx_name: eCos license version 2.0 -url: https://www.gnu.org/licenses/ecos-license.html diff --git a/data/eCos/eCos_Public_License_v1.1.yaml b/data/eCos/eCos_Public_License_v1.1.yaml deleted file mode 100644 index d94c259..0000000 --- a/data/eCos/eCos_Public_License_v1.1.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -approved: no -fedora_name: eCos Public License, v1.1 -name: eCos Public License, v1.1 diff --git a/data/eGenix/eGenix.yaml b/data/eGenix/eGenix.yaml deleted file mode 100644 index 96bd221..0000000 --- a/data/eGenix/eGenix.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: eGenix -fedora_name: eGenix.com Public License 1.1.0 -name: eGenix.com Public License 1.1.0 -spdx_abbrev: eGenix -spdx_name: eGenix.com Public License 1.1.0 -url: http://www.egenix.com/products/eGenix.com-Public-License-1.1.0.pdf diff --git a/data/ec/ec.yaml b/data/ec/ec.yaml deleted file mode 100644 index 9be12e5..0000000 --- a/data/ec/ec.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: ec -fedora_name: ec Font License -name: ec Font License -url: https://fedoraproject.org/wiki/Licensing/Fonts/ec diff --git a/data/gSOAP/gSOAP-1.3b.yaml b/data/gSOAP/gSOAP-1.3b.yaml deleted file mode 100644 index c4bb4af..0000000 --- a/data/gSOAP/gSOAP-1.3b.yaml +++ /dev/null @@ -1,7 +0,0 @@ ---- -approved: no -fedora_name: gSOAP Public License -name: gSOAP Public License v1.3b -spdx_abbrev: gSOAP-1.3b -spdx_name: gSOAP Public License v1.3b -url: http://www.cs.fsu.edu/~engelen/license.html diff --git a/data/gnuplot/gnuplot.yaml b/data/gnuplot/gnuplot.yaml deleted file mode 100644 index 2b3dc2b..0000000 --- a/data/gnuplot/gnuplot.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: gnuplot -fedora_name: gnuplot License -name: gnuplot License -spdx_abbrev: gnuplot -spdx_name: gnuplot License -url: https://fedoraproject.org/wiki/Licensing/Gnuplot diff --git a/data/iMatix/iMatix.yaml b/data/iMatix/iMatix.yaml deleted file mode 100644 index 795d5d1..0000000 --- a/data/iMatix/iMatix.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: iMatix -fedora_name: iMatix Standard Function Library Agreement -name: iMatix Standard Function Library Agreement -spdx_abbrev: iMatix -spdx_name: iMatix Standard Function Library Agreement -url: http://legacy.imatix.com/html/sfl/sfl4.htm#license diff --git a/data/lha/lha_license.yaml b/data/lha/lha_license.yaml deleted file mode 100644 index ea788cc..0000000 --- a/data/lha/lha_license.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -approved: no -name: lha license -url: http://packages.debian.org/changelogs/pool/non-free/l/lha/current/copyright diff --git a/data/libpng/Libpng.yaml b/data/libpng/Libpng.yaml deleted file mode 100644 index 23b2f8c..0000000 --- a/data/libpng/Libpng.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: libpng License -spdx_abbrev: Libpng -spdx_name: libpng License -url: http://www.libpng.org/pub/png/src/libpng-LICENSE.txt diff --git a/data/libtiff/libtiff.yaml b/data/libtiff/libtiff.yaml deleted file mode 100644 index 21601eb..0000000 --- a/data/libtiff/libtiff.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: libtiff -fedora_name: libtiff License -name: libtiff License -spdx_abbrev: libtiff -spdx_name: libtiff License -url: https://fedoraproject.org/wiki/Licensing/libtiff diff --git a/data/mecab-ipadic/mecab-ipadic.yaml b/data/mecab-ipadic/mecab-ipadic.yaml deleted file mode 100644 index 66acdb6..0000000 --- a/data/mecab-ipadic/mecab-ipadic.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: mecab-ipadic -fedora_name: mecab-ipadic license -name: mecab-ipadic license -url: http://www.icot.or.jp/ARCHIVE/terms-and-conditions-for-IFS-J.html diff --git a/data/midnight/midnight.yaml b/data/midnight/midnight.yaml deleted file mode 100644 index b61948e..0000000 --- a/data/midnight/midnight.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: midnight -fedora_name: midnight License -name: midnight License -url: https://fedoraproject.org/wiki/Licensing/midnight diff --git a/data/mod_macro/mod_macro.yaml b/data/mod_macro/mod_macro.yaml deleted file mode 100644 index 302174e..0000000 --- a/data/mod_macro/mod_macro.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: mod_macro -fedora_name: mod_macro License -name: mod_macro License -url: http://www.cri.ensmp.fr/~coelho/mod_macro/mod_macro/LICENSE diff --git a/data/mplus/mplus.yaml b/data/mplus/mplus.yaml deleted file mode 100644 index bead452..0000000 --- a/data/mplus/mplus.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: mplus -fedora_name: mplus Font License -name: mplus Font License -url: https://fedoraproject.org/wiki/Licensing/mplus diff --git a/data/mrouted/mrouted_license_old.yaml b/data/mrouted/mrouted_license_old.yaml deleted file mode 100644 index 6cc35e4..0000000 --- a/data/mrouted/mrouted_license_old.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: mrouted license (old) -name: mrouted license (old) -url: https://fedoraproject.org/wiki/Licensing/mrouted diff --git a/data/psfrag/psfrag.yaml b/data/psfrag/psfrag.yaml deleted file mode 100644 index 0041ef7..0000000 --- a/data/psfrag/psfrag.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: psfrag -fedora_name: psfrag License -name: psfrag License -spdx_abbrev: psfrag -spdx_name: psfrag License -url: https://fedoraproject.org/wiki/Licensing/psfrag diff --git a/data/psutils/psutils.yaml b/data/psutils/psutils.yaml deleted file mode 100644 index 141621d..0000000 --- a/data/psutils/psutils.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: psutils -fedora_name: psutils License -name: psutils License -spdx_abbrev: psutils -spdx_name: psutils License -url: https://fedoraproject.org/wiki/Licensing/psutils diff --git a/data/qmail/qmail_License.yaml b/data/qmail/qmail_License.yaml deleted file mode 100644 index 8644bb5..0000000 --- a/data/qmail/qmail_License.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: qmail License -name: qmail License -url: http://cr.yp.to/qmail/dist.html diff --git a/data/radvd/radvd.yaml b/data/radvd/radvd.yaml deleted file mode 100644 index 62565cf..0000000 --- a/data/radvd/radvd.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: radvd -fedora_name: radvd License -name: radvd License -url: https://fedoraproject.org/wiki/Licensing/radvd_License diff --git a/data/softSurfer/softSurfer.yaml b/data/softSurfer/softSurfer.yaml deleted file mode 100644 index ed7df81..0000000 --- a/data/softSurfer/softSurfer.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: softSurfer -fedora_name: softSurfer License -name: softSurfer License -url: https://fedoraproject.org/wiki/Licensing/softSurfer diff --git a/data/unrar/unrar_license.yaml b/data/unrar/unrar_license.yaml deleted file mode 100644 index a8a901e..0000000 --- a/data/unrar/unrar_license.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -approved: no -fedora_name: unrar license -name: unrar license -url: https://fedoraproject.org/wiki/Licensing:Unrar?rd=Licensing/Unrar diff --git a/data/wxWidgets/WXwindows.yaml b/data/wxWidgets/WXwindows.yaml deleted file mode 100644 index 1f78f4a..0000000 --- a/data/wxWidgets/WXwindows.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: unknown -name: wxWindows Library License -spdx_abbrev: WXwindows -spdx_name: wxWindows Library License -url: https://opensource.org/licenses/WXwindows diff --git a/data/wxWidgets/wxWidgets.yaml b/data/wxWidgets/wxWidgets.yaml deleted file mode 100644 index 6101801..0000000 --- a/data/wxWidgets/wxWidgets.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -approved: yes -fedora_abbrev: wxWidgets -fedora_name: wxWidgets Library License -name: wxWidgets Library License -url: http://www.wxwidgets.org/manuals/stable/wx_wxlicense.html diff --git a/data/wxWidgets/wxWindows.yaml b/data/wxWidgets/wxWindows.yaml deleted file mode 100644 index f59f996..0000000 --- a/data/wxWidgets/wxWindows.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: wxWindows -fedora_name: wxWindows Library License v 3.1 -name: wxWindows Library License v 3.1 -spdx_abbrev: WXwindows -spdx_name: wxWindows Library License -url: https://opensource.org/licenses/WXwindows diff --git a/data/xinetd/xinetd.yaml b/data/xinetd/xinetd.yaml deleted file mode 100644 index d6f5d46..0000000 --- a/data/xinetd/xinetd.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: xinetd -fedora_name: xinetd License -name: xinetd License -spdx_abbrev: xinetd -spdx_name: xinetd License -url: https://fedoraproject.org/wiki/Licensing/Xinetd_License diff --git a/data/zlib/zlib.yaml b/data/zlib/zlib.yaml deleted file mode 100644 index 61e94ea..0000000 --- a/data/zlib/zlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: zlib -fedora_name: zlib/libpng License -name: zlib/libpng License -spdx_abbrev: Zlib -spdx_name: zlib License -url: http://www.zlib.net/zlib_license.html diff --git a/data/zlib/zlib_with_acknowledgement.yaml b/data/zlib/zlib_with_acknowledgement.yaml deleted file mode 100644 index 04b5528..0000000 --- a/data/zlib/zlib_with_acknowledgement.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -approved: yes -fedora_abbrev: zlib with acknowledgement -fedora_name: zlib/libpng License with Acknowledgement -name: zlib/libpng License with Acknowledgement -spdx_abbrev: zlib-acknowledgement -spdx_name: zlib/libpng License with Acknowledgement -url: https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement diff --git a/good.tsv b/good.tsv new file mode 100644 index 0000000..29ee6b2 --- /dev/null +++ b/good.tsv @@ -0,0 +1,311 @@ +Fedora Full Name Fedora Short Name SPDX Short Identifier On SPDX list? SPDX-Fedora identifiers compare? 1:1 replaceable? Notes (2021) Fedora license URL Notes on license (old) +Zero-Clause BSD 0BSD 0BSD YES same N/A https://fedoraproject.org/wiki/Licensing/ZeroClauseBSD +Attribution Assurance License AAL AAL YES same N/A http://opensource.org/licenses/attribution.php +Abstyles License Abstyles Abstyles YES same N/A https://fedoraproject.org/wiki/Licensing/Abstyles Document License. Meets Open Source definition. +Adobe Systems Incorporated Source Code License Agreement Adobe Adobe-2006 YES version # Y https://fedoraproject.org/wiki/Licensing/AdobeLicense Permissive license with a reverse indemnification clause. Indemnity flows from Licensee to Adobe. +Amazon Digital Services License ADSL ADSL YES same N/A https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense Permissive license +Academic Free License AFL AFL-3.0 YES version # http://opensource.org/licenses/afl-3.0.php SPDX List also has AFL-1.1, AFL-1.2, AFL-2.0, AFL-2.1 +Afmparse License Afmparse Afmparse YES same N/A https://fedoraproject.org/wiki/Licensing/Afmparse Permissive license +Affero General Public License 1.0 AGPLv1 AGPL-1.0-only YES GPL Y http://www.affero.org/oagpl.html +Affero General Public License 3.0 AGPLv3 AGPL-3.0-only YES GPL Y http://www.fsf.org/licensing/licenses/agpl-3.0.html +Affero General Public License 3.0 with Zarafa trademark exceptions AGPLv3 with exceptions AGPL-3.0-only WITH AGPL-3.0-or-later WITH 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 +Affero General Public License 3.0 or later AGPLv3+ AGPL-3.0-or-later YES GPL Y http://www.fsf.org/licensing/licenses/agpl-3.0.html +AMD's plpa_map.c License AMDPLPA AMDPLPA YES same N/A https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License BSD variant. Single use case? +Apple MIT License AML AML YES same N/A https://fedoraproject.org/wiki/Licensing/Apple_MIT_License MIT-like license with a provision regarding no patent grant for derivative works. +Academy of Motion Picture Arts and Sciences BSD AMPAS BSD AMPAS YES different Y https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD BSD variant; specifically disclaims rights to trademarks, patents, etc. +ANTLR Software Rights Notice ANTLR-PD ANTLR-PD YES same N/A https://fedoraproject.org/wiki/Licensing/ANTLR-PD +Adobe Postscript AFM License APAFML APAFML YES same N/A https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM 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 +App::s2p License App-s2p App-s2p submitted used in https://metacpan.org/release/KNOK/File-MMagic-1.30/source/COPYING https://fedoraproject.org/wiki/Licensing/App-s2p https://github.com/spdx/license-list-XML/issues/1361 +Apple Public Source License 2.0 APSL 2.0 APSL-2.0 YES hyphen N/A http://www.opensource.apple.com/apsl/2.0.txt +Aspell-ru License ARL ARL YES same N/A https://fedoraproject.org/wiki/Licensing/AspellRu 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 +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 +Artistic 2.0 Artistic 2.0 Artistic-2.0 YES hyphen Y http://www.perlfoundation.org/artistic_license_2_0 +Artistic (clarified) Artistic clarified ClArtistic YES different Y https://fedoraproject.org/wiki/Licensing/ArtisticClarified +Apache Software License 1.0 ASL 1.0 Apache-1.0 YES different Y http://www.apache.org/licenses/LICENSE-1.0 +4Suite Copyright License ASL 1.1 Apache-1.1 YES different Y new URL http://www.worldlii.org/int/other/PubRL/2000/1.html http://4suite.org/COPYRIGHT Bad URL; this is the same license as Apache-1.1 +Apache Software License 1.1 ASL 1.1 Apache-1.1 YES different Y http://www.apache.org/licenses/LICENSE-1.1 +MX4J License ASL 1.1 Apache-1.1 YES different Y https://fedoraproject.org/wiki/Licensing/MX4J Fedora uses identifier, "ASL 1.1" this is the same as Apache 1.1 but for names +Neotonic Clearsilver License ASL 1.1 Apache-1.1 YES different Y http://www.clearsilver.net/license.hdf Fedora uses identifier, "ASL 1.1" link used to go to a page that shows BSD-2-Clause and a notice regarding that change. Found older(?) version with this license: https://github.com/rphillips/clearsilver/blob/master/CS_LICENSE, which is same as Apache 1.1 also see https://github.com/blong42/clearsilver/blob/master/LICENSE +QuickFix License ASL 1.1 Apache-1.1 YES different Y http://www.quickfixengine.org/quickfix/doc/html/license.html +Apache Software License 2.0 ASL 2.0 Apache-2.0 YES different Y http://www.apache.org/licenses/LICENSE-2.0 +Bahyph License Bahyph Bahyph YES same N/A https://fedoraproject.org/wiki/Licensing/Bahyph Very permissive license (may be for single product). +Barr License Barr Barr YES same N/A https://fedoraproject.org/wiki/Licensing/Barr 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 +Beerware License Beerware Beerware YES same N/A https://fedoraproject.org/wiki/Licensing/Beerware Very permissive license. +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? +BitTorrent License BitTorrent BitTorrent-1.1 YES version # https://fedoraproject.org/wiki/Licensing/BitTorrent_Open_Source_License SPDX List also has BitTorrent-1.0 +Boost Software License Boost BSL-1.0 YES version # Y http://www.boost.org/LICENSE_1_0.txt +Borceux license Borceux Borceux YES same N/A https://fedoraproject.org/wiki/Licensing/Borceux Permissive license. May be single package license. +Eclipse Distribution License 1.0 BSD BSD 3-clause YES different category http://www.eclipse.org/org/documents/edl-v10.php This is BSD 3-clause +Creative Commons BSD BSD BSD-2-Clause YES different category http://creativecommons.org/licenses/BSD/ short identifier issue - need to deal with for all BSD variants +Cryptix General License BSD BSD-2-Clause YES different category http://www.cryptix.org/LICENSE.TXT Fedora uses identifier, "BSD" +BSD License (two clause) BSD BSD-2-Clause-FreeBSD YES different category https://fedoraproject.org/wiki/Licensing/BSD#2ClauseBSD Fedora uses identifier, "BSD" +BSD License (no advertising) BSD BSD-3-Clause YES different category https://fedoraproject.org/wiki/Licensing/BSD#3ClauseBSD Same as BSD-3-Clause, but replaces "copyright holders" with "regents" +Metasploit Framework License (post 2006) BSD BSD-3-Clause YES different category license text on Fedora page is list of licenses https://fedoraproject.org/wiki/Licensing/Metasploit_Framework_License +BSD Protection License BSD Protection BSD-Protection YES hyphen Y https://fedoraproject.org/wiki/Licensing/BSD_Protection_License Copyleft license that allows for binary distribution under closed source license. +BSD License (Advertising Variant) BSD with advertising BSD-4-Clause YES different this is actually the BSD-4-Clause (Fedora records some extra stuff at top of file, but that is not really part of license) https://fedoraproject.org/wiki/Licensing/BSD#BSDwithAdvertising Fedora should link to: https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#Original_BSD_License_.28BSD_with_advertising.29 similar to BSD-4-Clause +NRL License BSD with advertising NRL YES different category http://web.mit.edu/network/isakmp/nrllicense.html 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. +BSD with attribution BSD with attribution BSD-3-Clause-Attribution YES different Y https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution Did not find BSD with attribution on any of the URL links for BSD licenses (see Note at bottom of table). +BSD + Patent BSD-2-Clause-Patent BSD-2-Clause-Patent YES same N/A https://fedoraproject.org/wiki/Licensing/BSD-2-Clause-Patent +Computer Associates Trusted Open Source License 1.1 CATOSL CATOSL-1.1 YES version # Y http://opensource.org/licenses/ca-tosl1.1.php SPDX short identifier adds version # +Creative Commons Zero 1.0 Universal CC0 CC0-1.0 YES version # Y http://creativecommons.org/publicdomain/zero/1.0/legalcode +Common Development Distribution License 1.0 CDDL-1.0 CDDL-1.0 YES same N/A https://fedoraproject.org/wiki/Licensing/CDDL#CDDL_1.0 +Common Development Distribution License 1.1 CDDL-1.1 CDDL-1.1 YES same N/A https://fedoraproject.org/wiki/Licensing/CDDL#CDDL_1.1 +CeCILL License v1.1 CeCILL CECILL-1.1 YES version # http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html SPDX List also has CECILL-1.0 +CeCILL License v2 CeCILL CECILL-2.0 YES version # http://www.cecill.info/licences.en.html SPDX List also has CECILL-1.0 +CeCILL-B License CeCILL-B CECILL-B YES same N/A http://www.cecill.info/licences.en.html SPDX List also has CECILL-1.0 +CeCILL-C License CeCILL-C CECILL-C YES same N/A http://www.cecill.info/licences.en.html SPDX List also has CECILL-1.0 +CNRI License (Old Python) CNRI CNRI-Python YES different Y http://www.handle.net/python_licenses/python1.6_9-5-00.html +Condor Public License Condor Condor-1.1 YES version # Y URL has been updated to show Apache-2.0 (SPDX has original text) http://www.cs.wisc.edu/condor/condor-public-license.html The URL provided by Fedora does not point to any license. SPDX short identifier adds version # +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 +CPAL License 1.0 CPAL CPAL-1.0 YES version # Y https://www.socialtext.net/open/index.cgi?cpal_license_in_wikitext SPDX short identifier adds version # +Common Public License CPL CPL-1.0 YES version # Y http://www.eclipse.org/legal/cpl-v10.html SPDX short identifier adds version # +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 +Crossword License Crossword Crossword YES same N/A https://fedoraproject.org/wiki/Licensing/Crossword Permissive license. May be single package license. +Crystal Stacker License Crystal Stacker CrystalStacker YES same Y https://fedoraproject.org/wiki/Licensing/CrystalStacker +Cube License Cube Cube YES same N/A https://fedoraproject.org/wiki/Licensing/Cube 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 +diffmark license diffmark diffmark YES same N/A https://fedoraproject.org/wiki/Licensing/diffmark License text "1. you can do what you want with it 2. I refuse any responsibility for the consequences" May be single package license +Docbook MIT License DMIT NO looks to be used by docbook project? https://fedoraproject.org/wiki/Licensing/DMIT +DOC License DOC DOC YES same N/A http://www.cs.wustl.edu/~schmidt/ACE-copying.html Permissive license. May be single package license, but package is oft used. +Dotseqn License Dotseqn Dotseqn YES same N/A https://fedoraproject.org/wiki/Licensing/Dotseqn Permissive license. Appears to be single file/package +DSDP License DSDP DSDP YES same N/A https://fedoraproject.org/wiki/Licensing/DSDP MIT like license. +dvipdfm License dvipdfm dvipdfm YES same N/A https://fedoraproject.org/wiki/Licensing/dvipdfm Permissive license. May be a one time license +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 +Educational Community License 1.0 ECL 1.0 ECL-1.0 YES hyphen Y http://opensource.org/licenses/ecl1.php +Educational Community License 2.0 ECL 2.0 ECL-2.0 YES hyphen Y http://www.osedu.org/licenses/ECL-2.0/ +eCos License v2.0 eCos GPL-2.0-or-later WITH eCos-2.0 YES exceptions Y http://www.fsf.org/licensing/licenses/ecos-license.html +Eiffel Forum License 2.0 EFL 2.0 EFL-2.0 YES hyphen Y http://www.fsf.org/licensing/licenses/eiffel-forum-license-2.html +eGenix.com Public License 1.1.0 eGenix eGenix YES same N/A https://fedoraproject.org/wiki/Licensing/eGenix.com_Public_License_1.1.0 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 +Entessa Public License Entessa Entessa YES same N/A http://opensource.org/licenses/entessa.php +EPICS Open License EPICS EPICS YES same N/A http://www.aps.anl.gov/epics/license/open.php +Eclipse Public License 1.0 EPL-1.0 EPL-1.0 YES same N/A http://www.eclipse.org/legal/epl-v10.html +Eclipse Public License 2.0 EPL-2.0 EPL-2.0 YES same N/A http://www.eclipse.org/legal/epl-v20.html +Erlang Public License 1.1 ERPL ErlPL-1.1 YES version # Y https://fedoraproject.org/wiki/Licensing/ErlangPublicLicense +EU Datagrid Software License EU Datagrid EUDatagrid YES space Y http://www.opensource.org/licenses/eudatagrid.php +European Union Public License 1.1 EUPL 1.1 EUPL-1.1 YES hyphen Y http://ec.europa.eu/idabc/en/document/7774.html +European Union Public License 1.2 EUPL 1.2 EUPL-1.2 YES hyphen Y https://opensource.org/licenses/EUPL-1.2 +Eurosym License Eurosym Eurosym YES same N/A https://fedoraproject.org/wiki/Licensing/Eurosym Copyleft license. German law applies +Fair License Fair Fair YES same N/A http://opensource.org/licenses/fair.php +Fraunhofer FDK AAC License FDK-AAC FDK-AAC YES same Y if still used in Fedora, then add to SPDX added for 3.15 version https://fedoraproject.org/wiki/Licensing/FDK-AAC +FSF All Permissive license FSFAP FSFAP YES same N/A https://fedoraproject.org/wiki/Licensing/FSFAP +FSF Unlimited License FSFUL FSFUL YES same N/A https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License Permissive license. +FSF Unlimited License (with License Retention) FSFULLR FSFULLR YES same N/A https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant Permissive license. +Freetype License FTL FTL YES same N/A http://freetype.fis.uniroma2.it/FTL.TXT +Giftware License Giftware Giftware YES same N/A http://www.talula.demon.co.uk/allegro/license.html Permissive license. done - added Allegro 4; Allegro 5 is same as zlib +GL2PS License GL2PS GL2PS YES same N/A http://www.geuz.org/gl2ps/COPYING.GL2PS Copyleft license. +3dfx Glide License Glide Glide YES same N/A http://www.users.on.net/~triforce/glidexp/COPYING.txt License is specific to 3dfx corporation and glide software. License text shows up in opensuse. See https://gitorious.org/opensuse/license_o_o/source/f0086a864b2322ce268931aeb45edbe2718fd2a6:licenses/3DFX-GPL.txt +Glulxe License Glulxe Glulxe YES same N/A https://fedoraproject.org/wiki/Licensing/Glulxe Permissive license. May be one package license. +gnuplot License gnuplot Gnuplot YES same N/A https://fedoraproject.org/wiki/Licensing/Gnuplot License requires changes to source to be packaged as patches and not appended to the original source, etc. +GNU General Public License (no version) GPL+ GPL-1.0-or-later YES GPL Y 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. No version GPL +GNU General Public License v1.0 or later GPL+ GPL-1.0-or-later YES GPL Y Note that this is not GPLv1+, because 1+ is the same as any version. +Perl License GPL+ or Artistic GPL-1.0-or-later OR Artistic-1.0-Perl YES GPL Y http://dev.perl.org/licenses/ this would be covered by using the short identifiers for each licnese choice with the "OR" operator +GNU General Public License (no version), with Classpath exception GPL+ with exceptions GPL-1.0-or-later WITH Classpath-exception-2.0 YES exceptions category https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception +GNU General Public License (no version), with font embedding exception GPL+ with exceptions GPL-1.0-or-later WITH Font-exception-2.0 YES exceptions category 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. +GNU General Public License v1.0 only GPLv1 GPL-1.0-only YES GPL Y http://www.gnu.org/licenses/old-licenses/gpl-1.0.txt +GNU General Public License v2.0 only GPLv2 GPL-2.0-only YES GPL Y http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +Perl License (variant) GPLv2 or Artistic GPL-2.0-only OR Artistic-1.0-Perl YES GPL Y Some perl packages explicitly state GPLv2, only use this license for those cases this would be covered by using the short identifiers for each licnese choice with the "OR" operator +GNU General Public License v2.0 only, with Classpath exception GPLv2 with exceptions GPL-2.0-only WITH Classpath-exception-2.0 YES exceptions category https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception +MySQL License GPLv2 with exceptions GPL-2.0-only WITH DigiRule-FOSS-exception GPL-2.0-only WITH Universal-FOSS-exception-1.0 YES exceptions category SPDX has the old one and the latest one (same as Fedora-provided link) note for SPDX: DigiRule needs markup in SPDX (current one) http://www.mysql.com/company/legal/licensing/foss-exception.html two versions of this, link only goes to most current +GNU General Public License v2.0 only, with font embedding exception GPLv2 with exceptions GPL-2.0-only WITH Font-exception-2.0 YES exceptions category http://www.gnu.org/licenses/gpl-faq.html#FontException +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? +Creative Commons GNU GPL GPLv2+ GPL-2.0-or-later YES GPL Y http://creativecommons.org/choose/cc-gpl This is GPL-2.0+ +GNU General Public License v2.0 or later GPLv2+ GPL-2.0-or-later YES GPL Y http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +Perl License (variant) GPLv2+ or Artistic GPL-2.0-or-later OR Artistic-1.0-Perl YES GPL Y Some perl packages explicitly state GPLv2+, only use this license for those cases this would be covered by using the short identifiers for each licnese choice with the "OR" operator +GNU General Public License v2.0 or later, with Classpath exception GPLv2+ with exceptions GPL-2.0-or-later WITH Classpath-exception-2.0 YES exceptions category https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception +GNU General Public License v2.0 or later, with font embedding exception GPLv2+ with exceptions GPL-2.0-or-later WITH Font-exception-2.0 YES exceptions category http://www.gnu.org/licenses/gpl-faq.html#FontException +GNU General Public License v3.0 only GPLv3 GPL-3.0-only YES GPL Y http://www.fsf.org/licensing/licenses/gpl.html +GNU General Public License v3.0 only, with Classpath exception GPLv3 with exceptions GPL-3.0-only WITH Classpath-exception-2.0 YES exceptions category https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception +GNU General Public License v3.0 only, with font embedding exception GPLv3 with exceptions GPL-3.0-only WITH Font-exception-2.0 YES exceptions category http://www.gnu.org/licenses/gpl-faq.html#FontException +GNU General Public License v3.0 or later GPLv3+ GPL-3.0-or-later YES GPL Y http://www.fsf.org/licensing/licenses/gpl.html +GNU General Public License v3.0 or later, with Classpath exception GPLv3+ with exceptions GPL-3.0-or-later WITH Classpath-exception-2.0 YES exceptions category https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception +GNU General Public License v3.0 or later, with font embedding exception GPLv3+ with exceptions GPL-3.0-or-later WITH Font-exception-2.0 YES exceptions category http://www.gnu.org/licenses/gpl-faq.html#FontException +Haskell Language Report License HaskellReport HaskellReport YES same N/A https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License 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 +Henry Spencer Reg-Ex Library License HSRL Spencer-86 YES different https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License Fedora shows 2 different licenses on this page, SPDX includes them both, plus also a third variant from 99 +Henry Spencer Reg-Ex Library License HSRL Spencer-94 +IBM Public License IBM IPL-1.0 YES different Y http://www.opensource.org/licenses/ibmpl.php +Independent JPEG Group License IJG IJG YES same N/A https://fedoraproject.org/wiki/Licensing/IJG +ImageMagick License ImageMagick ImageMagick YES same N/A http://www.imagemagick.org/script/license.php 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 +iMatix Standard Function Library Agreement iMatix iMatix YES same Y http://legacy.imatix.com/html/sfl/sfl4.htm#license 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. +Imlib2 License Imlib2 Imlib2 YES same N/A https://fedoraproject.org/wiki/Licensing/Imlib2 +Inner Net License Inner-Net NO in one package - glibc https://fedoraproject.org/wiki/Licensing/Inner_Net_License +Intel ACPI Software License Agreement Intel ACPI Intel-ACPI YES hyphen Y https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement Intel specific license. +Interbase Public License Interbase Interbase-1.0 YES version # Y Fedora to update link to license to: http://www.firebirdsql.org/en/interbase-public-license/ http://www.borland.com/devsupport/interbase/opensource/IPL.html Fedora link does not provide license text +ISC License (Bind, DHCP Server) ISC ISC YES same N/A https://www.isc.org/software/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 +JasPer License JasPer JasPer-2.0 YES version # Y http://www.ece.uvic.ca/~mdadams/jasper/LICENSE MIT/BSD like +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. +Latex2e License Latex2e Latex2e YES same N/A https://fedoraproject.org/wiki/Licensing/Latex2e Copyleft license. +Lawrence Berkeley National Labs BSD variant license LBNL BSD BSD-3-Clause-LBNL YES different Y https://fedoraproject.org/wiki/Licensing/LBNLBSD BSD like license with a provision at the end that makes any non licensed additions subject to a FOSS license +Leptonica License Leptonica Leptonica YES same N/A https://fedoraproject.org/wiki/Licensing/Leptonica BSD like. Official license site http://www.leptonica.com/about-the-license.html +GNU Lesser General Public License v2 (or 2.1) only LGPLv2 LGPL-2.0-only YES GPL =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 treats 2.0 and 2.1 as same, SPDX does not +GNU Lesser General Public License v2 (or 2.1) only LGPLv2 LGPL-2.1-only YES GPL +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. +FLTK License LGPLv2 with exceptions LGPL-2.0-or-later WITH FLTK-exception YES exceptions category http://www.fltk.org/COPYING.php LGPLv2 with exception. +Creative Commons GNU LGPL LGPLv2+ LGPL-2.0-or-later YES GPL Y http://creativecommons.org/choose/cc-lgpl This is LGPL-2.0+ +GNU Lesser General Public License (no version) LGPLv2+ LGPL-2.0-or-later YES GPL Y 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. Note that this is LGPLv2+, not LGPL+, because version 2 was the first version of LGPL. 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. +GNU Lesser General Public License v2 (or 2.1) or later LGPLv2+ LGPL-2.0-or-later YES GPL http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +GNU Lesser General Public License v2 (or 2.1) or later LGPLv2+ LGPL-2.1-or-later YES GPL +Perl License (variant) LGPLv2+ or Artistic LGPL-2.0-or-later OR Artistic-1.0-Perl YES GPL Y Some perl packages explicitly state LGPLv2+ (extremely uncommon), only use this license for those cases this would be covered by using the short identifiers for each licnese choice with the "OR" operator +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. +Qwt License 1.0 LGPLv2+ with exceptions LGPL-2.1-or-later WITH Qwt-exception-1.0 YES exceptions category http://qwt.sourceforge.net/qwtlicense.html +GNU Lesser General Public License v3.0 only LGPLv3 LGPL-3.0-only YES GPL Y http://www.fsf.org/licensing/licenses/lgpl.html +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 LGPLv3+ LGPL-3.0-or-later YES GPL Y http://www.fsf.org/licensing/licenses/lgpl.html +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 +libtiff License libtiff libtiff YES same N/A https://fedoraproject.org/wiki/Licensing/libtiff BSD/MIT like +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 +Lucent Public License (Plan9) LPL LPL-1.02 YES version # Y http://plan9.bell-labs.com/plan9dist/license.html SPDX List also has LPL-1.0 +LaTeX Project Public License LPPL LPPL-1.3a YES version # http://www.latex-project.org/lppl/lppl-1-3a.txt SPDX List also has LPPL-1.0, LPPL-1.1, LPPL-1.2, LPPL-1.3c +MakeIndex License MakeIndex MakeIndex YES same N/A https://fedoraproject.org/wiki/Licensing/MakeIndex Strong Copyleft. +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 +MirOS License MirOS MirOS YES same N/A http://mirbsd.de/MirOS-Licence +Adobe Glyph List License MIT Adobe-Glyph YES different category https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph MIT variant; Fedora does not use distinct short identifier +Historical Permission Notice and Disclaimer MIT HPND YES different category http://opensource.org/licenses/historical.php no longer used in practice per OSI +CMU License (BSD like) MIT MIT-CMU YES different category https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style MIT/BSD variant. +enna License MIT MIT-enna YES different category https://fedoraproject.org/wiki/Licensing/MIT#enna MIT variant COPYING.PLAIN text referenced in the license can be found here http://git.enlightenment.org/enlightenment/modules/forecasts.git/plain/COPYING-PLAIN +feh License MIT MIT-feh YES different category https://fedoraproject.org/wiki/Licensing/MIT#feh Slight variant to MIT license. May be one package license +mpich2 License MIT mpich2 YES different category https://fedoraproject.org/wiki/Licensing/MIT +SGI Free Software License B 2.0 MIT SGI-B-2.0 YES different category http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf Fedora uses short name, "MIT" +Standard ML of New Jersey License MIT StandardML-NJ YES different category https://fedoraproject.org/wiki/Licensing/MIT 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. +MIT license (also X11) MIT MIT YES category 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 https://fedoraproject.org/wiki/Licensing/MIT This link goes to MIT "category" page - not a specific license text +Enlightenment License (e16) MIT with advertising MIT-advertising YES hyphen Y https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising This license is identical to MIT-FEH (except for templatized copyright statement) +Nunit License MIT with advertising Nunit zlib-acknowledgement YES different category added to SPDX as "Nunit" and later realized it was same as zlib-acknowledgement with matching guidelines - use latter identifier https://fedoraproject.org/wiki/Licensing/Nunit +MIT No Attribution (MIT-0) MIT-0 MIT-0 YES same N/A https://fedoraproject.org/wiki/Licensing/MIT-0 +MIT +no-false-attribs license MITNFA MITNFA YES same N/A https://fedoraproject.org/wiki/Licensing/MITNFA +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 +Motosoto License Motosoto Motosoto YES same N/A http://opensource.org/licenses/motosoto.php +FreeImage Public License MPLv1.0 FreeImage YES different category http://freeimage.sourceforge.net/freeimage-license.txt Fedora does not use distinct short identifier from MPLv1.0 (needs to be verified). diff in choice of law provision - ADDED +Mozilla Public License v1.0 MPLv1.0 MPL-1.0 YES hyphen category http://opensource.org/licenses/mozilla1.0.php +CUA Office Public License Version 1.0 MPLv1.1 CUA-OPL-1.0 YES different category http://opensource.org/licenses/cuaoffice.php Fedora uses short identifier, "MPLv1.1" +Mozilla Public License v1.1 MPLv1.1 MPL-1.1 YES hyphen category http://www.mozilla.org/MPL/MPL-1.1.html +Mozilla Public License v2.0 MPLv2.0 MPL-2.0 YES hyphen Y https://fedoraproject.org/wiki/Licensing/MPLv2.0 +Microsoft Public License MS-PL MS-PL YES same N/A http://www.microsoft.com/opensource/licenses.mspx#Ms-PL +Microsoft Reciprocal License MS-RL MS-RL YES same N/A http://www.microsoft.com/opensource/licenses.mspx#Ms-RL +Matrix Template Library License MTLL MTLL YES same N/A https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License Single package license. Apache-1.1-like +Mup License Mup Mup YES same N/A https://fedoraproject.org/wiki/Licensing/Mup +Naumen Public License Naumen Naumen YES same N/A http://opensource.org/licenses/naumen.php +NCSA/University of Illinois Open Source License NCSA NCSA YES same N/A http://otm.illinois.edu/uiuc_openSource +Celtx Public License (CePL) Netscape Interbase-1.0 YES different category 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 http://www.celtx.com/CePL/ 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 +Netscape Public License Netscape NPL-1.0 YES different category http://www.mozilla.org/NPL/NPL-1.0.html SPDX List also has NPL-1.1 +Newmat License Newmat NO not listed in Rawhide list https://fedoraproject.org/wiki/Licensing/Newmat_License +Newsletr License Newsletr Newsletr YES same N/A https://fedoraproject.org/wiki/Licensing/Newsletr +Nethack General Public License NGPL NGPL YES same N/A http://opensource.org/licenses/nethack.php +NIST Software License NISTSL NIST-PD-fallback YES different Y 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? https://fedoraproject.org/wiki/Licensing/NISTSL +No Limit Public License NLPL NLPL YES same N/A https://fedoraproject.org/wiki/Licensing/NLPL +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 +Nokia Open Source License Nokia Nokia YES same N/A http://opensource.org/licenses/nokia.html +Netizen Open Source License NOSL NOSL YES same N/A http://bits.netizen.com.au/licenses/NOSL/nosl.txt +Noweb License Noweb Noweb YES same N/A https://fedoraproject.org/wiki/Licensing/Noweb +Open Government License OGL OGL-UK-3.0 YES version # SPDX uses version number and "UK" as there are other "Open Government" licenses http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/ +Open Market License OML OML YES same N/A https://fedoraproject.org/wiki/Licensing/Open_Market_License +OpenLDAP License OpenLDAP OLDAP-2.8 YES different http://www.openldap.org/software/release/license.html +OpenPBS License OpenPBS NO listed for torque project, but only see Torque-1.1 license in upstream repo?? https://fedoraproject.org/wiki/Licensing/OpenPBS +OpenSSL License OpenSSL OpenSSL YES same N/A http://www.sdisw.com/openssl.htm +OReilly License OReilly NO only shows up in Rawhide list for http://wsdlpull.sourceforge.net project ?? https://fedoraproject.org/wiki/Licensing/OReilly permissive license +Open Software License 1.0 OSL 1.0 OSL-1.0 YES hyphen Y http://www.opensource.org/licenses/osl-1.0.txt +Open Software License 2.0 OSL 2.0 OSL-2.0 YES hyphen Y http://www.nexb.com/license/LICENSE-OSL-2.0.html +Open Software License 2.1 OSL 2.1 OSL-2.1 YES hyphen Y https://fedoraproject.org/wiki/Licensing/OSL2.1 +Open Software License 3.0 OSL 3.0 OSL-3.0 YES hyphen Y http://opensource.org/licenses/osl-3.0.php +Par License Par NO doesn't seem to be in Rawhide https://fedoraproject.org/wiki/Licensing/Par +Phorum License Phorum Apache-1.1 YES different Y http://phorum.org/license.txt https://github.com/Phorum/Core/blob/master/docs/license.txt PM: Reject (Apache 1.1 license-template should suffice) +PHP License v3.0 PHP PHP-3.01 YES version # http://www.php.net/license/3_01.txt SPDX List also has PHP-3.0 +PlainTeX License PlainTeX NO doesn't seem to be in Rawhide https://fedoraproject.org/wiki/Licensing/PlainTeX +Plexus Classworlds License Plexus Plexus YES same N/A https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License +PostgreSQL License PostgreSQL PostgreSQL YES same N/A https://fedoraproject.org/wiki/Licensing/PostgreSQL_License +psfrag License psfrag psfrag YES same N/A https://fedoraproject.org/wiki/Licensing/psfrag +psutils License psutils psutils YES same N/A https://fedoraproject.org/wiki/Licensing/psutils +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 +Qhull License Qhull Qhull YES same N/A https://fedoraproject.org/wiki/Licensing/Qhull +Q Public License QPL QPL-1.0 YES version # http://doc.trolltech.com/4.0/qpl.html +radvd License radvd NO https://fedoraproject.org/wiki/Licensing/radvd_License +Rdisc License Rdisc Rdisc YES same N/A https://fedoraproject.org/wiki/Licensing/Rdisc_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 +RealNetworks Public Source License V1.0 RPSL RPSL-1.0 YES version # Y http://www.opensource.org/licenses/real.php +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 +Ruby License Ruby Ruby YES same N/A http://www.ruby-lang.org/en/LICENSE.txt +Saxpath License Saxpath Saxpath YES same N/A https://fedoraproject.org/wiki/Licensing/Saxpath_License +SCEA Shared Source License SCEA SCEA YES same N/A http://research.scea.com/scea_shared_source_license.html note it is listed here too: http://en.opensuse.org/openSUSE:Accepted_licences and elsewhere +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" +Sendmail License Sendmail Sendmail-8.23 YES version # SPDX also has https://spdx.org/licenses/Sendmail.html text on link Fedora has goes to "8.23" version http://www.sendmail.org/ftp/LICENSE +Sequence Library License Sequence Apache-1.1 YES different Y https://fedoraproject.org/wiki/Licensing/SequenceLibraryLicense +Sun Industry Standards Source License SISSL SISSL YES same N/A http://www.openoffice.org/licenses/sissl_license.html +Sleepycat Software Product License Sleepycat Sleepycat YES same N/A https://fedoraproject.org/wiki/Licensing/Sleepycat +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) " +SNIA Public License 1.1 SNIA SNIA YES same N/A https://fedoraproject.org/wiki/Licensing/SNIA_Public_License 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 +softSurfer License softSurfer NO https://fedoraproject.org/wiki/Licensing/softSurfer +Sun Public License SPL SPL-1.0 YES version # Y https://fedoraproject.org/wiki/Licensing/Sun_Public_License +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 +Scheme Widget Library (SWL) Software License Agreement SWL SWL YES same N/A https://fedoraproject.org/wiki/Licensing/SWL +Trusted Computing Group License TCGL NO https://fedoraproject.org/wiki/Licensing/TCGL +TCL/TK License TCL TCL YES same N/A https://fedoraproject.org/wiki/Licensing/TCL +Teeworlds License Teeworlds zlib YES different Y Fedora page mentions additional 4th clause as option - is this variant found? if so, then might need new entry in SPDX https://fedoraproject.org/wiki/Licensing/Teeworlds In its Free version (cf. fedora Wiki for details), it is identical to the Zlib license. +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 +TMate Open Source License TMate TMate YES same N/A http://svnkit.com/license.html +Tolua License Tolua NO https://fedoraproject.org/wiki/Licensing/Tolua +TORQUE v2.5+ Software License v1.1 TORQUEv1.1 TORQUE-1.1 YES hyphen N/A https://fedoraproject.org/wiki/Licensing/TORQUEv1.1 choice of law Utah. Release in Feb. 2014 +Trusster Open Source License TOSL TOSL YES same N/A https://fedoraproject.org/wiki/Licensing/TOSL per Fedora, sleepycat like but one substantial difference +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 +Unicode License Unicode Unicode-DFS-2015 YES version # https://fedoraproject.org/wiki/Licensing/Unicode +Unlicense Unlicense Unlicense YES same N/A https://fedoraproject.org/wiki/Licensing/Unlicense +Universal Permissive License UPL UPL-1.0 YES version # Y https://fedoraproject.org/wiki/Licensing/UPL +Vim License Vim Vim YES same N/A http://vimdoc.sourceforge.net/htmldoc/uganda.html +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 +VOSTROM Public License for Open Source VOSTROM VOSTROM YES same N/A https://fedoraproject.org/wiki/Licensing/VOSTROM +Vovida Software License v. 1.0 VSL VSL-1.0 YES version # Y http://opensource.org/licenses/vovidapl.php +W3C Software Notice and License W3C W3C YES same N/A http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +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 +Wsuipa License Wsuipa Wsuipa YES same N/A https://fedoraproject.org/wiki/Licensing/Wsuipa part of TEX +Do What The F*ck You Want To Public License WTFPL WTFPL YES same N/A https://fedoraproject.org/wiki/Licensing/WTFPL +wxWidgets Library License wxWidgets WXwindows NO different 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 http://www.wxwidgets.org/manuals/stable/wx_wxlicense.html This is actually the *wxWindows* (not wxWidget) Library Licence, Version 3.1. The SPDX list didn't retain the version number. +wxWindows Library License v 3.1 wxWindows LGPL-2.0-or-later WITH WxWindows-exception-3.1 YES exceptions Y https://fedoraproject.org/wiki/Licensing/wxWindows.html +Xerox License Xerox Xerox YES same N/A https://fedoraproject.org/wiki/Licensing/Xerox Currently identified by fossology as "Xerox" +xinetd License xinetd xinetd YES same N/A https://fedoraproject.org/wiki/Licensing/Xinetd_License +XPP License xpp xpp YES same N/A https://fedoraproject.org/wiki/Licensing/xpp +XSkat License XSkat XSkat YES same N/A https://fedoraproject.org/wiki/Licensing/XSkat_License +Yahoo Public License v 1.1 YPLv1.1 YPL-1.1 YES hyphen Y http://www.zimbra.com/license/yahoo_public_license_1.1.html +Zed License Zed Zed YES same N/A https://fedoraproject.org/wiki/Licensing/Zed +Zend License v2.0 Zend Zend-2.0 YES version # Y http://www.zend.com/license/2_00.txt Currently identified by fossology as "Zend-2.0", which is consistent with SPDX naming scheme +zlib/libpng License zlib Zlib YES same N/A http://www.gzip.org/zlib/zlib_license.html +zlib/libpng License with Acknowledgement zlib with acknowledgement zlib-acknowledgement YES different Y https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement 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 +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)" +Zope Public License v 2.0 ZPLv2.0 ZPL-2.0 YES hyphen Y http://www.zope.org/Resources/ZPL +Zope Public License v 2.1 ZPLv2.1 ZPL-2.1 YES hyphen Y http://www.zope.org/Resources/ZPL + + + +285 listed licenses on Fedora good list Already on or covered by SPDX list = 232 + Not on SPDX = 54 + On hold question for Fedora = 0 + NEW licenses from Fedora / not on SPDX = 0 + + TOTAL = 286 + IDENTIFIERS + + same = 100 + diff identifer (hypen) = 21 + diff identifier (version #) = 26 + exceptions 22 + GPL = 23 + different = 42 + + REPLACEABLE: + 1:1 - Y 76 + N/A (already same) 98 + blank 71 \ No newline at end of file diff --git a/json2toml.py b/json2toml.py new file mode 100755 index 0000000..ff35717 --- /dev/null +++ b/json2toml.py @@ -0,0 +1,146 @@ +#!/usr/bin/python3 +# +# Quick and Dirty script to convert license CSV file to individual TOML files. +# +# David Cantrell +# + +import os +import sys +import csv +import textwrap + +def usage(cmd): + print("Usage: %s [tsv file] [output dir]" % os.path.basename(cmd)) + +def write_bad_row(output, row): + o = open(output, "a") + o.write("\t".join(row)) + o.write("\n") + o.close() + +if __name__ == "__main__": + line = 1 + + if len(sys.argv) != 3: + usage(sys.argv[0]) + sys.exit(1) + + cwd = os.getcwd() + outdir = sys.argv[2] + badrows = os.path.join(cwd, "bad.tsv") + + f = open(os.path.realpath(sys.argv[1]), newline='') + csvdata = csv.reader(f, delimiter='\t') + + for row in csvdata: + fedora_name = "" + fedora_abbrev = "" + spdx_expression = "" + notes = "" + text = "" + + if "".join(row) == "": + line += 1 + continue + + # we are done with this condition + if len(row) >= 1 and row[0].find("listed licenses on Fedora good list") != -1: + break + + # columns are: + # 0 Fedora Full Name + # 1 Fedora Short Name + # 2 SPDX Short Identifier + # 3 + # 4 On SPDX list? + # 5 SPDX-Fedora identifiers compare? + # 6 1:1 replaceable? + # 7 Notes (2021) + # 8 Fedora license URL + # 9 Notes on license (old) + + # The first row are the column headers + if len(row) >= 2 and row[0] == "Fedora Full Name" and row[1] == "Fedora Short Name": + line += 1 + continue + + # get the fedora name + if len(row) >= 1: + fedora_name = row[0] + + # get the fedora abbreviation + if len(row) >= 2: + fedora_abbrev = row[1] + + # collect SPDX expression + if len(row) >= 3: + spdx_expression = row[2] + + # collect notes + if len(row) >= 8 and row[7] != "": + notes = row[7] + if len(row) >= 10 and row[9] != "": + if notes == "": + notes = row[9] + else: + notes += " " + row[9] + + # collect text (url) + if len(row) >= 9 and row[8] != "": + text = row[8] + + # process + if spdx_expression == "": + print("unable to convert line %d (missing SPDX expression), writing to bad.tsv" % line) + write_bad_row(badrows, row) + line += 1 + continue + elif spdx_expression.find("<") != -1 or spdx_expression.find(">") != -1: + print("unable to convert line %d (<> found in field), writing to bad.tsv" % line) + write_bad_row(badrows, row) + line += 1 + continue + elif spdx_expression.find("...") != -1: + print("unable to convert line %d (... found in field), writing to bad.tsv" % line) + write_bad_row(badrows, row) + line += 1 + continue + + if not os.path.isdir(outdir): + os.makedirs(outdir, exist_ok=True) + + output_file = os.path.join(outdir, spdx_expression.replace(" ", "_") + ".toml") + + # write output file + o = open(output_file, "w") + o.write("[license]\n\n") + o.write("expression = \"%s\"\n" % spdx_expression) + o.write("status = \"approved\"\n") + + if text != "": + o.write("\ntext = '''\n") + o.write("\n".join(textwrap.wrap(text, width=80))) + o.write("\n'''\n") + + if fedora_name != "" or fedora_abbrev != "" or notes != "": + o.write("\n[fedora]\n\n") + + if fedora_name != "": + o.write("name = \"%s\"\n" % fedora_name) + + if fedora_abbrev != "": + o.write("abbreviation = \"%s\"\n" % fedora_abbrev) + + if notes != "": + if fedora_name != "" or fedora_abbrev != "": + o.write("\n") + + o.write("notes = '''\n") + o.write("\n".join(textwrap.wrap(notes, width=80))) + o.write("\n'''\n") + + o.close() + line += 1 + + f.close() diff --git a/json2yaml.py b/json2yaml.py deleted file mode 100755 index 974db06..0000000 --- a/json2yaml.py +++ /dev/null @@ -1,82 +0,0 @@ -#!/usr/bin/python3 -# -# Quick and Dirty script to convert fedora.json to individual YAML -# files. The script divides them out based on abbreviation preference. -# In order: -# 1) If the license has fedora_abbrev, that is used and it is written to -# ./fedora_abbrev -# 2) If the license has spdx_abbrev and fedora_abbrev is empty, it is -# written to ./spdx_abbrev -# 3) As a last resort, the license is written to ./other using the full -# name that is the JSON key as the filename. -# -# David Cantrell -# - -import os -import sys -import json -import yaml - -def usage(cmd): - print("Usage: %s [json file]" % os.path.basename(cmd)) - -if __name__ == "__main__": - if len(sys.argv) != 2: - usage(sys.argv[0]) - sys.exit(1) - - cwd = os.getcwd() - - with open(os.path.realpath(sys.argv[1]), "rb") as f: - rawdata = f.read() - - data = json.loads(rawdata) - - # write out the entries based on the type of abbreviation - for k in data.keys(): - entry = data[k] - - license = {"name": k} - - # XXX: this still doesn't trim the single quotes, unknown why - if entry["approved"] not in ["", "''"]: - license["approved"] = entry["approved"].replace("'", "") - - if entry["fedora_abbrev"] not in ["", "''"]: - license["fedora_abbrev"] = entry["fedora_abbrev"].replace("'", "") - - if entry["fedora_name"] not in ["", "''"]: - license["fedora_name"] = entry["fedora_name"].replace("'", "") - - if entry["spdx_abbrev"] not in ["", "''"] and entry["spdx_abbrev"].find("#No official SPDX support as of") == -1: - license["spdx_abbrev"] = entry["spdx_abbrev"].replace("'", "") - - if entry["spdx_name"] not in ["", "''"] and entry["spdx_name"].find("#No official SPDX support as of") == -1: - license["spdx_name"] = entry["spdx_name"].replace("'", "") - - if entry["url"] not in ["", "''"]: - license["url"] = entry["url"].replace("'", "") - - if "fedora_abbrev" in license.keys(): - # entry has a Fedora abbreviation - outdir = os.path.realpath(os.path.join(cwd, "fedora_abbrev")) - outfile = "%s.yaml" % license["fedora_abbrev"] - elif "spdx_abbrev" in license.keys() and "fedora_abbrev" not in license.keys(): - # entry has an SPDX abbreviation but not a Fedora one - outdir = os.path.realpath(os.path.join(cwd, "spdx_abbrev")) - outfile = "%s.yaml" % license["spdx_abbrev"] - else: - # entry has no known abbreviation, using full name from JSON file - outdir = os.path.realpath(os.path.join(cwd, "other")) - outfile = "%s.yaml" % k - - if not os.path.isdir(outdir): - os.makedirs(outdir, exist_ok=True) - - # strike undesirable characters from the output filename - outfile = outfile.replace("/", "_").replace(" ", "_").replace("(", "").replace(")", "").replace("!", "").replace("C#", "Csharp").replace("Microsoft's", "Microsoft") - - with open(os.path.join(outdir, outfile), "w") as yamlout: - yamlout.write("---\n") - yaml.dump(license, yamlout, default_flow_style=False) diff --git a/run.log b/run.log new file mode 100644 index 0000000..46d398f --- /dev/null +++ b/run.log @@ -0,0 +1,57 @@ +unable to convert line 11 (<> found in field), writing to bad.tsv +unable to convert line 21 (missing SPDX expression), writing to bad.tsv +unable to convert line 34 (missing SPDX expression), writing to bad.tsv +unable to convert line 35 (missing SPDX expression), writing to bad.tsv +unable to convert line 60 (missing SPDX expression), writing to bad.tsv +unable to convert line 63 (missing SPDX expression), writing to bad.tsv +unable to convert line 64 (missing SPDX expression), writing to bad.tsv +unable to convert line 69 (missing SPDX expression), writing to bad.tsv +unable to convert line 74 (missing SPDX expression), writing to bad.tsv +unable to convert line 111 (missing SPDX expression), writing to bad.tsv +unable to convert line 131 (missing SPDX expression), writing to bad.tsv +unable to convert line 135 (missing SPDX expression), writing to bad.tsv +unable to convert line 137 (missing SPDX expression), writing to bad.tsv +unable to convert line 138 (missing SPDX expression), writing to bad.tsv +unable to convert line 139 (missing SPDX expression), writing to bad.tsv +unable to convert line 145 (... found in field), writing to bad.tsv +unable to convert line 152 (... found in field), writing to bad.tsv +unable to convert line 155 (... found in field), writing to bad.tsv +unable to convert line 157 (... found in field), writing to bad.tsv +unable to convert line 158 (missing SPDX expression), writing to bad.tsv +unable to convert line 160 (missing SPDX expression), writing to bad.tsv +unable to convert line 161 (missing SPDX expression), writing to bad.tsv +unable to convert line 162 (missing SPDX expression), writing to bad.tsv +unable to convert line 166 (missing SPDX expression), writing to bad.tsv +unable to convert line 167 (missing SPDX expression), writing to bad.tsv +unable to convert line 182 (missing SPDX expression), writing to bad.tsv +unable to convert line 197 (missing SPDX expression), writing to bad.tsv +unable to convert line 202 (missing SPDX expression), writing to bad.tsv +unable to convert line 209 (missing SPDX expression), writing to bad.tsv +unable to convert line 211 (missing SPDX expression), writing to bad.tsv +unable to convert line 216 (missing SPDX expression), writing to bad.tsv +unable to convert line 219 (missing SPDX expression), writing to bad.tsv +unable to convert line 224 (missing SPDX expression), writing to bad.tsv +unable to convert line 225 (missing SPDX expression), writing to bad.tsv +unable to convert line 228 (missing SPDX expression), writing to bad.tsv +unable to convert line 230 (missing SPDX expression), writing to bad.tsv +unable to convert line 231 (missing SPDX expression), writing to bad.tsv +unable to convert line 232 (missing SPDX expression), writing to bad.tsv +unable to convert line 234 (missing SPDX expression), writing to bad.tsv +unable to convert line 235 (missing SPDX expression), writing to bad.tsv +unable to convert line 239 (missing SPDX expression), writing to bad.tsv +unable to convert line 244 (missing SPDX expression), writing to bad.tsv +unable to convert line 246 (missing SPDX expression), writing to bad.tsv +unable to convert line 248 (missing SPDX expression), writing to bad.tsv +unable to convert line 250 (missing SPDX expression), writing to bad.tsv +unable to convert line 253 (missing SPDX expression), writing to bad.tsv +unable to convert line 254 (missing SPDX expression), writing to bad.tsv +unable to convert line 256 (missing SPDX expression), writing to bad.tsv +unable to convert line 259 (missing SPDX expression), writing to bad.tsv +unable to convert line 260 (missing SPDX expression), writing to bad.tsv +unable to convert line 261 (missing SPDX expression), writing to bad.tsv +unable to convert line 262 (missing SPDX expression), writing to bad.tsv +unable to convert line 263 (missing SPDX expression), writing to bad.tsv +unable to convert line 264 (missing SPDX expression), writing to bad.tsv +unable to convert line 269 (missing SPDX expression), writing to bad.tsv +unable to convert line 273 (missing SPDX expression), writing to bad.tsv +unable to convert line 287 (missing SPDX expression), writing to bad.tsv