Skip to content

Commit

Permalink
Remove ranges from deprecated IDs list
Browse files Browse the repository at this point in the history
  • Loading branch information
kemitchell committed May 22, 2024
1 parent 70a1f23 commit 8b54002
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion build.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ https.get('https://spdx.org/licenses/licenses.json', response => {
const deprecated = [];
for (const {licenseId: id, isDeprecatedLicenseId: isDeprecated} of licenses) {
if (isDeprecated) {
deprecated.push(id);
if (!id.endsWith('+')) deprecated.push(id);
} else {
index.push(id);
}
Expand Down
6 changes: 0 additions & 6 deletions deprecated.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,18 @@
"GFDL-1.2",
"GFDL-1.3",
"GPL-1.0",
"GPL-1.0+",
"GPL-2.0",
"GPL-2.0+",
"GPL-2.0-with-GCC-exception",
"GPL-2.0-with-autoconf-exception",
"GPL-2.0-with-bison-exception",
"GPL-2.0-with-classpath-exception",
"GPL-2.0-with-font-exception",
"GPL-3.0",
"GPL-3.0+",
"GPL-3.0-with-GCC-exception",
"GPL-3.0-with-autoconf-exception",
"LGPL-2.0",
"LGPL-2.0+",
"LGPL-2.1",
"LGPL-2.1+",
"LGPL-3.0",
"LGPL-3.0+",
"Nunit",
"StandardML-NJ",
"bzip2-1.0.5",
Expand Down

0 comments on commit 8b54002

Please sign in to comment.