diff --git a/src/build/scripts/GenerateSpdxLicenseList.groovy b/src/build/scripts/GenerateSpdxLicenseList.groovy index f9d656994..e04536c72 100644 --- a/src/build/scripts/GenerateSpdxLicenseList.groovy +++ b/src/build/scripts/GenerateSpdxLicenseList.groovy @@ -5,6 +5,7 @@ import java.nio.charset.Charset import java.nio.charset.StandardCharsets import java.nio.file.Path import java.nio.file.Files +import java.util.regex.Matcher import java.util.regex.Pattern import java.util.Map.Entry import java.util.AbstractMap.SimpleImmutableEntry @@ -27,24 +28,72 @@ def log = LoggerFactory.getLogger(this.class) @Field UrlChecker urlChecker final Path basePath = basedir.toPath() - -final URL licensesUrl = new URL('https://raw.githubusercontent.com/spdx/license-list-data/master/json/licenses.json') +@Field final String licensesUrlString = 'https://raw.githubusercontent.com/spdx/license-list-data/v3.5/json/licenses.json' +final URL licensesUrl = new URL(licensesUrlString) final Path spdxDir = basePath.resolve('src/main/java/org/codehaus/mojo/license/spdx') final Path spdxTestDir = basePath.resolve('src/test/java/org/codehaus/mojo/license/spdx') final Path licensesDir = basePath.resolve('target/spdx/licenses') -/* Licenses known to deliver different content over time, although they pass out simple test here */ -final List instableContentUrls = [] +/* Licenses known to deliver different content over time, although they pass our simple test here */ +final List instableContentUrls = [ + Pattern.compile('https?://(www\\.)?opensource\\.org.*'), +] + @Field final Map> urlReplacements = [ /* Workaround for https://github.com/spdx/license-list-XML/issues/777 */ 'archive.org-0': new SimpleImmutableEntry<>(Pattern.compile('(archive\\.org/web/[0-9]+)/'), '$1id_/' ), 'github.com/aws/mit-0': new SimpleImmutableEntry<>(Pattern.compile('.*github\\.com/aws/mit-0'), 'https://raw.githubusercontent.com/aws/mit-0/master/MIT-0' ), 'github.com-0': new SimpleImmutableEntry<>(Pattern.compile('https?://github\\.com/([^/]+)/([^/]+)/blob/(.*)'), 'https://raw.githubusercontent.com/$1/$2/$3' ), - 'microsoft.com/opensource/licenses.mspx': new SimpleImmutableEntry<>(Pattern.compile('.*microsoft\\.com/opensource/licenses\\.mspx'), 'https://web.archive.org/web/20150619132250id_/http://www.microsoft.com/en-us/openness/licenses.aspx' ), 'git.kernel.org-0': new SimpleImmutableEntry<>(Pattern.compile('https?://git\\.kernel\\.org/pub/scm/linux/([^/]+)/git/torvalds/linux\\.git/tree/(.*)'), 'https://git.kernel.org/pub/scm/linux/$1/git/torvalds/linux.git/plain/$2' ), 'git.savannah.gnu.org-0': new SimpleImmutableEntry<>(Pattern.compile('https?://git\\.savannah\\.gnu\\.org/cgit/(.*)\\.git/tree/(.*)'), 'http://git.savannah.gnu.org/cgit/$1.git/plain/$2' ), + 'microsoft.com/opensource/licenses.mspx': new SimpleImmutableEntry<>(Pattern.compile('.*microsoft\\.com/opensource/licenses\\.mspx'), 'https://web.archive.org/web/20150619132250id_/http://www.microsoft.com/en-us/openness/licenses.aspx' ), + 'mozilla.org/MPL/MPL-1.1.txt': new SimpleImmutableEntry<>(Pattern.compile('.*\\Q.mozilla.org/MPL/MPL-1.1.txt\\E'), 'https://www.mozilla.org/media/MPL/1.1/index.0c5913925d40.txt' ), + /* repository.jboss.com is known to be slow and timeouting */ + 'repository.jboss.com/licenses': new SimpleImmutableEntry<>(Pattern.compile('https?://repository\\.jboss\\.com/licenses/(.*)'), 'https://web.archive.org/web/20171202125112id_/http://repository.jboss.com/licenses/$1' ), ] as TreeMap +@Field final Map> additionalSeeAlso = [ + 'Apache-1.0': [ + 'https://apache.org/licenses/LICENSE-1.0.txt', + ], + 'Apache-1.1': [ + 'https://apache.org/licenses/LICENSE-1.1.txt', + ], + 'Apache-2.0': [ + 'https://opensource.org/licenses/apache2.0', + 'https://opensource.org/licenses/apache2.0.php', + 'https://opensource.org/licenses/apache2.0.html', + 'https://apache.org/licenses/LICENSE-2.0.txt', + ], + 'BSD-2-Clause': [ + 'https://opensource.org/licenses/bsd-license', + 'https://opensource.org/licenses/bsd-license.php', + 'https://opensource.org/licenses/bsd-license.html', + ], + 'CDDL-1.0': [ + 'https://opensource.org/licenses/cddl1', + 'https://opensource.org/licenses/cddl1.php', + 'https://opensource.org/licenses/cddl1.html', + ], + 'MIT': [ + 'https://opensource.org/licenses/mit-license', + 'https://opensource.org/licenses/mit-license.php', + 'https://opensource.org/licenses/mit-license.html', + ] +] +['GPL', 'LGPL'].each { lic -> + def licLower = lic.toLowerCase(Locale.US) + ['1.0', '2.0', '2.1', '3.0'].each { v -> + def urlInfix = '3.0'.equals(v) ? '' : 'old-licenses/' + ['', '+', '-only', '-or-later'].each { suffix -> + additionalSeeAlso.put("${lic}-${v}${suffix}".toString(), [ + "https://gnu.org/licenses/${urlInfix}${licLower}-${v}.txt".toString(), + "https://fsf.org/licensing/licenses/${licLower}-${v}.txt".toString(), + ]) + } + } +} + @Field final Map contentSanitizers = [ 'opensource.org-0': new ContentSanitizer('.*opensource\\.org.*', 'jQuery\\.extend\\(Drupal\\.settings[^\n]+', ''), 'opensource.org-1': new ContentSanitizer('.*opensource\\.org.*', 'value="form-[^"]*"', ''), @@ -77,6 +126,7 @@ final List instableContentUrls = [] 'codeproject.com-1': new ContentSanitizer('.*codeproject\\.com.*', '
[^\n]+', ''), 'codeproject.com-2': new ContentSanitizer('.*codeproject\\.com.*', '
\\s*[^\\s]+\\s*\\|\\s*[^\\s]+\\s*\\|', ''), + 'ohwr.org-0': new ContentSanitizer('.*ohwr\\.org.*', ' - log.info("Starting "+ lic['licenseId']) + final String licId = lic['licenseId'] + log.info("Starting "+ licId) lic['seeAlso']?.each { url -> url = url.trim() urlChecker.addUrl(url) } + additionalSeeAlso.get(licId)?.each { url -> + url = url.trim() + println "adding additional URL "+ url + urlChecker.addUrl(url) + } } log.info("Rechecking") urlChecker.recheck() @@ -135,8 +191,8 @@ try { /** * A class generated by GenerateSpdxLicenseList.groovy from - * - * https://raw.githubusercontent.com/spdx/license-list-data/master/json/licenses.json + * + * ${generator.licensesUrlString} */ class SpdxLicenseListData { @@ -176,7 +232,10 @@ spdx.each { field, value -> final String url = seeAlso.trim() println ' .seeAlso( ' + generator.escapeString(url) + ' )' } - def urlInfos = urlChecker.getUrlInfos(licValue); + def moreSeeAlso = generator.additionalSeeAlso.get(lic['licenseId']) + moreSeeAlso = moreSeeAlso == null ? [] : moreSeeAlso + + def urlInfos = urlChecker.getUrlInfos(licValue + moreSeeAlso); if (!urlInfos.isEmpty()) { println '' urlInfos.each { url, sha1MimeTypeStable -> @@ -243,8 +302,8 @@ def testTemplate = '''package org.codehaus.mojo.license.spdx; /** * A class generated by GenerateSpdxLicenseList.groovy from - * - * https://raw.githubusercontent.com/spdx/license-list-data/master/json/licenses.json + * + * ${generator.licensesUrlString} */ public class SpdxLicenseListDataTest { @@ -351,10 +410,11 @@ class UrlChecker implements AutoCloseable { if (oldSha1MimeType != null) { final Map.Entry newSha1 = get(url, true) if (!oldSha1MimeType.equals(newSha1)) { - log.warn("Volatile content from URL: "+ url) + log.warn("Volatile content from URL: "+ url + " old: "+ oldSha1MimeType + ", new "+ newSha1) old.setValue(new SimpleImmutableEntry(null, oldSha1MimeType.getValue())) } else { - generalize(url, oldSha1MimeType.getKey(), newUrlToSha1MimeType) + final String sha1 = oldSha1MimeType.getKey(); + generalize(url, sha1, newUrlToSha1MimeType) } } else { //it.remove() @@ -413,7 +473,8 @@ class UrlChecker implements AutoCloseable { } if (!content.equals(rawContent)) { log.info("Sanitized "+ url + " using "+ sanitizers) - Files.write(licensesDir.resolve(urlFileName + ".sanitized" + suffix), content.getBytes(charset)) + bytes = content.getBytes(charset); + Files.write(licensesDir.resolve(urlFileName + ".sanitized" + suffix), bytes) sanitizedUrls.add(url) } final String sha1 = DigestUtils.sha1Hex(bytes) @@ -460,15 +521,19 @@ class UrlChecker implements AutoCloseable { return urlToSha1MimeType.get(url); } - private void tryAdd(String url, String sha1, Set urls, Set>> newUrlToSha1MimeType) { + private boolean tryAdd(String url, String sha1, Set urls, Set>> newUrlToSha1MimeType) { if (!urls.contains(url)) { final Map.Entry newSha1MimeType = get(url, true) if (sha1.equals(newSha1MimeType?.getKey())) { log.info(" - generalized: "+ url) urls.add(url) newUrlToSha1MimeType.add(new SimpleImmutableEntry(url, new SimpleImmutableEntry(sha1, newSha1MimeType.getValue()))) + return true + } else { + log.warn(" - could not generalize: old sha1 "+ sha1 +" new sha1: "+ newSha1MimeType) } } + return false } private boolean isStable(String url) { diff --git a/src/main/java/org/codehaus/mojo/license/spdx/SpdxLicenseInfo.java b/src/main/java/org/codehaus/mojo/license/spdx/SpdxLicenseInfo.java index 01dfe9eb4..e633db3c8 100644 --- a/src/main/java/org/codehaus/mojo/license/spdx/SpdxLicenseInfo.java +++ b/src/main/java/org/codehaus/mojo/license/spdx/SpdxLicenseInfo.java @@ -145,6 +145,9 @@ public static class Attachments this.urlInfos = urlInfos; } + /** + * @return a {@link Map} from URLs to {@link UrlInfo}s + */ public Map getUrlInfos() { return urlInfos; @@ -174,11 +177,20 @@ public UrlInfo( String sha1, String mimeType, boolean stable, boolean sanitized this.sanitized = sanitized; } + /** + * @return {@code true} is the checksum returned by {@link #getSha1()} is likely to stay stable over time; + * {@code false} otherwise. The likeness of staying stable is (1) tested automatically when generatting + * {@link SpdxLicenseListData} and (2) for some sites it is set manually based on their historical + * behavior. + */ public boolean isStable() { return stable; } + /** + * @return the checksum computed after applying sanitizers at {@link SpdxLicenseListData} generation time. + */ public String getSha1() { return sha1; diff --git a/src/main/java/org/codehaus/mojo/license/spdx/SpdxLicenseListData.java b/src/main/java/org/codehaus/mojo/license/spdx/SpdxLicenseListData.java index ca8db1e81..f066a8cf9 100644 --- a/src/main/java/org/codehaus/mojo/license/spdx/SpdxLicenseListData.java +++ b/src/main/java/org/codehaus/mojo/license/spdx/SpdxLicenseListData.java @@ -24,8 +24,8 @@ /** * A class generated by GenerateSpdxLicenseList.groovy from - * - * https://raw.githubusercontent.com/spdx/license-list-data/master/json/licenses.json + * + * https://raw.githubusercontent.com/spdx/license-list-data/v3.5/json/licenses.json */ class SpdxLicenseListData { @@ -33,7 +33,7 @@ class SpdxLicenseListData static SpdxLicenseList createList() { final SpdxLicenseList.Builder builder = SpdxLicenseList.builder(); - builder.licenseListVersion( "v3.4-13-g6f12e70" ); + builder.licenseListVersion( "3.5" ); builder.license( SpdxLicenseInfo.builder() .reference( "./0BSD.html" ) @@ -59,10 +59,10 @@ static SpdxLicenseList createList() .licenseId( "AAL" ) .seeAlso( "https://opensource.org/licenses/attribution" ) - .urlInfo( "http://opensource.org/licenses/attribution", "167a1512b3489de35caabde436b1fb1fa880768e", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/attribution", "167a1512b3489de35caabde436b1fb1fa880768e", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/attribution", "167a1512b3489de35caabde436b1fb1fa880768e", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/attribution", "167a1512b3489de35caabde436b1fb1fa880768e", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/attribution", "3d2f40f1c2ba730a6448dcc327fc9720ee6017c3", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/attribution", "3d2f40f1c2ba730a6448dcc327fc9720ee6017c3", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/attribution", "3d2f40f1c2ba730a6448dcc327fc9720ee6017c3", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/attribution", "3d2f40f1c2ba730a6448dcc327fc9720ee6017c3", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -75,7 +75,10 @@ static SpdxLicenseList createList() .licenseId( "ADSL" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense" ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense", null, null, false, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense", "bee57e8bbf4f0b6a69b18fedd1829cd886d327e4", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense", "bee57e8bbf4f0b6a69b18fedd1829cd886d327e4", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense", "bee57e8bbf4f0b6a69b18fedd1829cd886d327e4", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense", "bee57e8bbf4f0b6a69b18fedd1829cd886d327e4", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -140,10 +143,10 @@ static SpdxLicenseList createList() .seeAlso( "http://www.rosenlaw.com/AFL3.0.htm" ) .seeAlso( "https://opensource.org/licenses/afl-3.0" ) - .urlInfo( "http://opensource.org/licenses/afl-3.0", "3f28e70cbfc51f40160d9b8bf5bdbe639cdb8c34", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/afl-3.0", "3f28e70cbfc51f40160d9b8bf5bdbe639cdb8c34", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/afl-3.0", "3f28e70cbfc51f40160d9b8bf5bdbe639cdb8c34", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/afl-3.0", "3f28e70cbfc51f40160d9b8bf5bdbe639cdb8c34", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/afl-3.0", "50b7352f72a53c100508fb0e04d96ebbe8e47391", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/afl-3.0", "50b7352f72a53c100508fb0e04d96ebbe8e47391", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/afl-3.0", "50b7352f72a53c100508fb0e04d96ebbe8e47391", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/afl-3.0", "50b7352f72a53c100508fb0e04d96ebbe8e47391", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -205,10 +208,10 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/agpl.txt", "4c665f87b5dc2e7d26279c4b48968d085e1ace32", "text/plain", true, false ) .urlInfo( "https://gnu.org/licenses/agpl.txt", "4c665f87b5dc2e7d26279c4b48968d085e1ace32", "text/plain", true, false ) .urlInfo( "https://www.gnu.org/licenses/agpl.txt", "4c665f87b5dc2e7d26279c4b48968d085e1ace32", "text/plain", true, false ) - .urlInfo( "http://opensource.org/licenses/AGPL-3.0", "f1141a83b31049d9aaf668b09d29f650568a8864", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/AGPL-3.0", "f1141a83b31049d9aaf668b09d29f650568a8864", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/AGPL-3.0", "f1141a83b31049d9aaf668b09d29f650568a8864", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/AGPL-3.0", "f1141a83b31049d9aaf668b09d29f650568a8864", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/AGPL-3.0", "be48d9bfd989e9e77f96dd28c7ccf601ed50f381", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/AGPL-3.0", "be48d9bfd989e9e77f96dd28c7ccf601ed50f381", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/AGPL-3.0", "be48d9bfd989e9e77f96dd28c7ccf601ed50f381", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/AGPL-3.0", "be48d9bfd989e9e77f96dd28c7ccf601ed50f381", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -227,10 +230,10 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/agpl.txt", "4c665f87b5dc2e7d26279c4b48968d085e1ace32", "text/plain", true, false ) .urlInfo( "https://gnu.org/licenses/agpl.txt", "4c665f87b5dc2e7d26279c4b48968d085e1ace32", "text/plain", true, false ) .urlInfo( "https://www.gnu.org/licenses/agpl.txt", "4c665f87b5dc2e7d26279c4b48968d085e1ace32", "text/plain", true, false ) - .urlInfo( "http://opensource.org/licenses/AGPL-3.0", "f1141a83b31049d9aaf668b09d29f650568a8864", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/AGPL-3.0", "f1141a83b31049d9aaf668b09d29f650568a8864", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/AGPL-3.0", "f1141a83b31049d9aaf668b09d29f650568a8864", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/AGPL-3.0", "f1141a83b31049d9aaf668b09d29f650568a8864", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/AGPL-3.0", "be48d9bfd989e9e77f96dd28c7ccf601ed50f381", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/AGPL-3.0", "be48d9bfd989e9e77f96dd28c7ccf601ed50f381", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/AGPL-3.0", "be48d9bfd989e9e77f96dd28c7ccf601ed50f381", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/AGPL-3.0", "be48d9bfd989e9e77f96dd28c7ccf601ed50f381", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -249,10 +252,10 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/agpl.txt", "4c665f87b5dc2e7d26279c4b48968d085e1ace32", "text/plain", true, false ) .urlInfo( "https://gnu.org/licenses/agpl.txt", "4c665f87b5dc2e7d26279c4b48968d085e1ace32", "text/plain", true, false ) .urlInfo( "https://www.gnu.org/licenses/agpl.txt", "4c665f87b5dc2e7d26279c4b48968d085e1ace32", "text/plain", true, false ) - .urlInfo( "http://opensource.org/licenses/AGPL-3.0", "f1141a83b31049d9aaf668b09d29f650568a8864", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/AGPL-3.0", "f1141a83b31049d9aaf668b09d29f650568a8864", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/AGPL-3.0", "f1141a83b31049d9aaf668b09d29f650568a8864", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/AGPL-3.0", "f1141a83b31049d9aaf668b09d29f650568a8864", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/AGPL-3.0", "be48d9bfd989e9e77f96dd28c7ccf601ed50f381", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/AGPL-3.0", "be48d9bfd989e9e77f96dd28c7ccf601ed50f381", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/AGPL-3.0", "be48d9bfd989e9e77f96dd28c7ccf601ed50f381", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/AGPL-3.0", "be48d9bfd989e9e77f96dd28c7ccf601ed50f381", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -265,10 +268,10 @@ static SpdxLicenseList createList() .licenseId( "AMDPLPA" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License", "2c6a826c264baa26b61799066041b64f44e8f00a", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/AMD_plpa_map_License", "2c6a826c264baa26b61799066041b64f44e8f00a", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License", "2c6a826c264baa26b61799066041b64f44e8f00a", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/AMD_plpa_map_License", "2c6a826c264baa26b61799066041b64f44e8f00a", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License", "cb0052100768dc7e52a3da34da946b34a3259b66", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/AMD_plpa_map_License", "cb0052100768dc7e52a3da34da946b34a3259b66", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License", "cb0052100768dc7e52a3da34da946b34a3259b66", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/AMD_plpa_map_License", "cb0052100768dc7e52a3da34da946b34a3259b66", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -281,10 +284,10 @@ static SpdxLicenseList createList() .licenseId( "AML" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Apple_MIT_License" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Apple_MIT_License", "4a0ab46e3cb366eae3795537fa490b94e8c4a474", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Apple_MIT_License", "4a0ab46e3cb366eae3795537fa490b94e8c4a474", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Apple_MIT_License", "4a0ab46e3cb366eae3795537fa490b94e8c4a474", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Apple_MIT_License", "4a0ab46e3cb366eae3795537fa490b94e8c4a474", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Apple_MIT_License", "c55e94054fba1dc49f41ff120388fb2c64554027", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Apple_MIT_License", "c55e94054fba1dc49f41ff120388fb2c64554027", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Apple_MIT_License", "c55e94054fba1dc49f41ff120388fb2c64554027", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Apple_MIT_License", "c55e94054fba1dc49f41ff120388fb2c64554027", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -325,10 +328,10 @@ static SpdxLicenseList createList() .licenseId( "APAFML" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM", "59b86d966161c6f391668e5c22d2ad51c240e43a", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/AdobePostscriptAFM", "59b86d966161c6f391668e5c22d2ad51c240e43a", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM", "59b86d966161c6f391668e5c22d2ad51c240e43a", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/AdobePostscriptAFM", "59b86d966161c6f391668e5c22d2ad51c240e43a", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM", "81ba32695de3c956d9890528ed12599b7eb1a250", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/AdobePostscriptAFM", "81ba32695de3c956d9890528ed12599b7eb1a250", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM", "81ba32695de3c956d9890528ed12599b7eb1a250", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/AdobePostscriptAFM", "81ba32695de3c956d9890528ed12599b7eb1a250", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -341,10 +344,10 @@ static SpdxLicenseList createList() .licenseId( "APL-1.0" ) .seeAlso( "https://opensource.org/licenses/APL-1.0" ) - .urlInfo( "http://opensource.org/licenses/APL-1.0", "e9ca68f274ad4a1836a9d35576e37dfe6fe90dfd", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/APL-1.0", "e9ca68f274ad4a1836a9d35576e37dfe6fe90dfd", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/APL-1.0", "e9ca68f274ad4a1836a9d35576e37dfe6fe90dfd", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/APL-1.0", "e9ca68f274ad4a1836a9d35576e37dfe6fe90dfd", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/APL-1.0", "4f473ae5e894bb26652a7511fb8c3b13da0362e7", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/APL-1.0", "4f473ae5e894bb26652a7511fb8c3b13da0362e7", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/APL-1.0", "4f473ae5e894bb26652a7511fb8c3b13da0362e7", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/APL-1.0", "4f473ae5e894bb26652a7511fb8c3b13da0362e7", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -357,10 +360,10 @@ static SpdxLicenseList createList() .licenseId( "APSL-1.0" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0", "8db2d5c7fffb8a7d86504a79c3c81e2b138a53c2", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0", "8db2d5c7fffb8a7d86504a79c3c81e2b138a53c2", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0", "8db2d5c7fffb8a7d86504a79c3c81e2b138a53c2", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0", "8db2d5c7fffb8a7d86504a79c3c81e2b138a53c2", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0", "540db8bb93326a868af04c0bcd2a7d36de1d56e4", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0", "540db8bb93326a868af04c0bcd2a7d36de1d56e4", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0", "540db8bb93326a868af04c0bcd2a7d36de1d56e4", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0", "540db8bb93326a868af04c0bcd2a7d36de1d56e4", "text/html", true, true ) .isOsiApproved( true ) .build() ); @@ -411,10 +414,10 @@ static SpdxLicenseList createList() .licenseId( "Abstyles" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Abstyles" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Abstyles", "696e92cbcfb4082dfb9a0bac290a63437a0a37bf", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Abstyles", "696e92cbcfb4082dfb9a0bac290a63437a0a37bf", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Abstyles", "696e92cbcfb4082dfb9a0bac290a63437a0a37bf", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Abstyles", "696e92cbcfb4082dfb9a0bac290a63437a0a37bf", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Abstyles", "c00b5519a8f317ed8aa53589c1d8445c3ef844ac", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Abstyles", "c00b5519a8f317ed8aa53589c1d8445c3ef844ac", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Abstyles", "c00b5519a8f317ed8aa53589c1d8445c3ef844ac", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Abstyles", "c00b5519a8f317ed8aa53589c1d8445c3ef844ac", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -427,7 +430,10 @@ static SpdxLicenseList createList() .licenseId( "Adobe-2006" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/AdobeLicense" ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/AdobeLicense", null, null, false, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/AdobeLicense", "2d1b5e03b12bcf28be788a3863fdf8f8fcf2dfba", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/AdobeLicense", "2d1b5e03b12bcf28be788a3863fdf8f8fcf2dfba", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/AdobeLicense", "2d1b5e03b12bcf28be788a3863fdf8f8fcf2dfba", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/AdobeLicense", "2d1b5e03b12bcf28be788a3863fdf8f8fcf2dfba", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -440,7 +446,26 @@ static SpdxLicenseList createList() .licenseId( "Adobe-Glyph" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph" ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", null, null, false, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT#enna", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT#feh", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT#enna", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT#feh", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT#enna", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT#feh", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT#enna", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT#feh", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -453,10 +478,10 @@ static SpdxLicenseList createList() .licenseId( "Afmparse" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Afmparse" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Afmparse", "a509c3eb761b8c62c11b492dc48a1788394ceb83", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Afmparse", "a509c3eb761b8c62c11b492dc48a1788394ceb83", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Afmparse", "a509c3eb761b8c62c11b492dc48a1788394ceb83", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Afmparse", "a509c3eb761b8c62c11b492dc48a1788394ceb83", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Afmparse", "f24d79e15fc8608636d2dbc15095444a25f63192", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Afmparse", "f24d79e15fc8608636d2dbc15095444a25f63192", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Afmparse", "f24d79e15fc8608636d2dbc15095444a25f63192", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Afmparse", "f24d79e15fc8608636d2dbc15095444a25f63192", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -483,10 +508,14 @@ static SpdxLicenseList createList() .licenseId( "Apache-1.0" ) .seeAlso( "http://www.apache.org/licenses/LICENSE-1.0" ) - .urlInfo( "http://apache.org/licenses/LICENSE-1.0", "ee3ed3c77889131fcce593511cb4d8d416ca94ac", "text/plain", true, false ) - .urlInfo( "http://www.apache.org/licenses/LICENSE-1.0", "ee3ed3c77889131fcce593511cb4d8d416ca94ac", "text/plain", true, false ) - .urlInfo( "https://apache.org/licenses/LICENSE-1.0", "ee3ed3c77889131fcce593511cb4d8d416ca94ac", "text/plain", true, false ) - .urlInfo( "https://www.apache.org/licenses/LICENSE-1.0", "ee3ed3c77889131fcce593511cb4d8d416ca94ac", "text/plain", true, false ) + .urlInfo( "http://apache.org/licenses/LICENSE-1.0", "07bcce2cb78c8cb063a5cd93ef19cf645e724462", "text/plain", true, false ) + .urlInfo( "http://apache.org/licenses/LICENSE-1.0.txt", "07bcce2cb78c8cb063a5cd93ef19cf645e724462", "text/plain", true, false ) + .urlInfo( "http://www.apache.org/licenses/LICENSE-1.0", "07bcce2cb78c8cb063a5cd93ef19cf645e724462", "text/plain", true, false ) + .urlInfo( "http://www.apache.org/licenses/LICENSE-1.0.txt", "07bcce2cb78c8cb063a5cd93ef19cf645e724462", "text/plain", true, false ) + .urlInfo( "https://apache.org/licenses/LICENSE-1.0", "07bcce2cb78c8cb063a5cd93ef19cf645e724462", "text/plain", true, false ) + .urlInfo( "https://apache.org/licenses/LICENSE-1.0.txt", "07bcce2cb78c8cb063a5cd93ef19cf645e724462", "text/plain", true, false ) + .urlInfo( "https://www.apache.org/licenses/LICENSE-1.0", "07bcce2cb78c8cb063a5cd93ef19cf645e724462", "text/plain", true, false ) + .urlInfo( "https://www.apache.org/licenses/LICENSE-1.0.txt", "07bcce2cb78c8cb063a5cd93ef19cf645e724462", "text/plain", true, false ) .isOsiApproved( false ) .build() ); @@ -501,14 +530,18 @@ static SpdxLicenseList createList() .seeAlso( "http://apache.org/licenses/LICENSE-1.1" ) .seeAlso( "https://opensource.org/licenses/Apache-1.1" ) - .urlInfo( "http://apache.org/licenses/LICENSE-1.1", "2d4dc7c4a231cff49934c3830787769a7afa5549", "text/plain", true, false ) - .urlInfo( "http://www.apache.org/licenses/LICENSE-1.1", "2d4dc7c4a231cff49934c3830787769a7afa5549", "text/plain", true, false ) - .urlInfo( "https://apache.org/licenses/LICENSE-1.1", "2d4dc7c4a231cff49934c3830787769a7afa5549", "text/plain", true, false ) - .urlInfo( "https://www.apache.org/licenses/LICENSE-1.1", "2d4dc7c4a231cff49934c3830787769a7afa5549", "text/plain", true, false ) - .urlInfo( "http://opensource.org/licenses/Apache-1.1", "8a6e39453268a2e79a6b94f3e7d1e15100c6c627", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/Apache-1.1", "8a6e39453268a2e79a6b94f3e7d1e15100c6c627", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/Apache-1.1", "8a6e39453268a2e79a6b94f3e7d1e15100c6c627", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/Apache-1.1", "8a6e39453268a2e79a6b94f3e7d1e15100c6c627", "text/html", true, true ) + .urlInfo( "http://apache.org/licenses/LICENSE-1.1", "9bb549e965aa70ab30dbd2949a773f49099ae629", "text/plain", true, false ) + .urlInfo( "http://apache.org/licenses/LICENSE-1.1.txt", "9bb549e965aa70ab30dbd2949a773f49099ae629", "text/plain", true, false ) + .urlInfo( "http://www.apache.org/licenses/LICENSE-1.1", "9bb549e965aa70ab30dbd2949a773f49099ae629", "text/plain", true, false ) + .urlInfo( "http://www.apache.org/licenses/LICENSE-1.1.txt", "9bb549e965aa70ab30dbd2949a773f49099ae629", "text/plain", true, false ) + .urlInfo( "https://apache.org/licenses/LICENSE-1.1", "9bb549e965aa70ab30dbd2949a773f49099ae629", "text/plain", true, false ) + .urlInfo( "https://apache.org/licenses/LICENSE-1.1.txt", "9bb549e965aa70ab30dbd2949a773f49099ae629", "text/plain", true, false ) + .urlInfo( "https://www.apache.org/licenses/LICENSE-1.1", "9bb549e965aa70ab30dbd2949a773f49099ae629", "text/plain", true, false ) + .urlInfo( "https://www.apache.org/licenses/LICENSE-1.1.txt", "9bb549e965aa70ab30dbd2949a773f49099ae629", "text/plain", true, false ) + .urlInfo( "http://opensource.org/licenses/Apache-1.1", "18606c49f9b34512c4e45f05975259c137be5c56", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/Apache-1.1", "18606c49f9b34512c4e45f05975259c137be5c56", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/Apache-1.1", "18606c49f9b34512c4e45f05975259c137be5c56", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/Apache-1.1", "18606c49f9b34512c4e45f05975259c137be5c56", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -524,13 +557,29 @@ static SpdxLicenseList createList() .seeAlso( "https://opensource.org/licenses/Apache-2.0" ) .urlInfo( "http://apache.org/licenses/LICENSE-2.0", "2b8b815229aa8a61e483fb4ba0588b8b6c491890", "text/plain", true, false ) + .urlInfo( "http://apache.org/licenses/LICENSE-2.0.txt", "2b8b815229aa8a61e483fb4ba0588b8b6c491890", "text/plain", true, false ) .urlInfo( "http://www.apache.org/licenses/LICENSE-2.0", "2b8b815229aa8a61e483fb4ba0588b8b6c491890", "text/plain", true, false ) + .urlInfo( "http://www.apache.org/licenses/LICENSE-2.0.txt", "2b8b815229aa8a61e483fb4ba0588b8b6c491890", "text/plain", true, false ) .urlInfo( "https://apache.org/licenses/LICENSE-2.0", "2b8b815229aa8a61e483fb4ba0588b8b6c491890", "text/plain", true, false ) + .urlInfo( "https://apache.org/licenses/LICENSE-2.0.txt", "2b8b815229aa8a61e483fb4ba0588b8b6c491890", "text/plain", true, false ) .urlInfo( "https://www.apache.org/licenses/LICENSE-2.0", "2b8b815229aa8a61e483fb4ba0588b8b6c491890", "text/plain", true, false ) - .urlInfo( "http://opensource.org/licenses/Apache-2.0", "709c684f56ad4b7c9bee6a690868687df1d6cc07", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/Apache-2.0", "709c684f56ad4b7c9bee6a690868687df1d6cc07", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/Apache-2.0", "709c684f56ad4b7c9bee6a690868687df1d6cc07", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/Apache-2.0", "709c684f56ad4b7c9bee6a690868687df1d6cc07", "text/html", true, true ) + .urlInfo( "https://www.apache.org/licenses/LICENSE-2.0.txt", "2b8b815229aa8a61e483fb4ba0588b8b6c491890", "text/plain", true, false ) + .urlInfo( "http://opensource.org/licenses/Apache-2.0", "efbdca62537c501650377fe25a4b03e166d8c3b2", "text/html", false, true ) + .urlInfo( "http://opensource.org/licenses/apache2.0", "efbdca62537c501650377fe25a4b03e166d8c3b2", "text/html", false, true ) + .urlInfo( "http://opensource.org/licenses/apache2.0.html", "efbdca62537c501650377fe25a4b03e166d8c3b2", "text/html", false, true ) + .urlInfo( "http://opensource.org/licenses/apache2.0.php", "efbdca62537c501650377fe25a4b03e166d8c3b2", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/Apache-2.0", "efbdca62537c501650377fe25a4b03e166d8c3b2", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/apache2.0", "efbdca62537c501650377fe25a4b03e166d8c3b2", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/apache2.0.html", "efbdca62537c501650377fe25a4b03e166d8c3b2", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/apache2.0.php", "efbdca62537c501650377fe25a4b03e166d8c3b2", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/Apache-2.0", "efbdca62537c501650377fe25a4b03e166d8c3b2", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/apache2.0", "efbdca62537c501650377fe25a4b03e166d8c3b2", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/apache2.0.html", "efbdca62537c501650377fe25a4b03e166d8c3b2", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/apache2.0.php", "efbdca62537c501650377fe25a4b03e166d8c3b2", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/Apache-2.0", "efbdca62537c501650377fe25a4b03e166d8c3b2", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/apache2.0", "efbdca62537c501650377fe25a4b03e166d8c3b2", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/apache2.0.html", "efbdca62537c501650377fe25a4b03e166d8c3b2", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/apache2.0.php", "efbdca62537c501650377fe25a4b03e166d8c3b2", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -543,10 +592,10 @@ static SpdxLicenseList createList() .licenseId( "Artistic-1.0" ) .seeAlso( "https://opensource.org/licenses/Artistic-1.0" ) - .urlInfo( "http://opensource.org/licenses/Artistic-1.0", "b821de05448a16af3ed3d1ca2045825c17cd5f40", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/Artistic-1.0", "b821de05448a16af3ed3d1ca2045825c17cd5f40", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/Artistic-1.0", "b821de05448a16af3ed3d1ca2045825c17cd5f40", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/Artistic-1.0", "b821de05448a16af3ed3d1ca2045825c17cd5f40", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/Artistic-1.0", "65a6ca3a3a8d078cea781fbf4e21e71d022426f0", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/Artistic-1.0", "65a6ca3a3a8d078cea781fbf4e21e71d022426f0", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/Artistic-1.0", "65a6ca3a3a8d078cea781fbf4e21e71d022426f0", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/Artistic-1.0", "65a6ca3a3a8d078cea781fbf4e21e71d022426f0", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -573,10 +622,10 @@ static SpdxLicenseList createList() .licenseId( "Artistic-1.0-cl8" ) .seeAlso( "https://opensource.org/licenses/Artistic-1.0" ) - .urlInfo( "http://opensource.org/licenses/Artistic-1.0", "b821de05448a16af3ed3d1ca2045825c17cd5f40", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/Artistic-1.0", "b821de05448a16af3ed3d1ca2045825c17cd5f40", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/Artistic-1.0", "b821de05448a16af3ed3d1ca2045825c17cd5f40", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/Artistic-1.0", "b821de05448a16af3ed3d1ca2045825c17cd5f40", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/Artistic-1.0", "65a6ca3a3a8d078cea781fbf4e21e71d022426f0", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/Artistic-1.0", "65a6ca3a3a8d078cea781fbf4e21e71d022426f0", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/Artistic-1.0", "65a6ca3a3a8d078cea781fbf4e21e71d022426f0", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/Artistic-1.0", "65a6ca3a3a8d078cea781fbf4e21e71d022426f0", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -591,14 +640,14 @@ static SpdxLicenseList createList() .seeAlso( "http://www.perlfoundation.org/artistic_license_2_0" ) .seeAlso( "https://opensource.org/licenses/artistic-license-2.0" ) - .urlInfo( "http://perlfoundation.org/artistic_license_2_0", "79a5a5d832b801579bf6f9b29ec87614f79e6513", "text/html", true, false ) - .urlInfo( "http://www.perlfoundation.org/artistic_license_2_0", "79a5a5d832b801579bf6f9b29ec87614f79e6513", "text/html", true, false ) - .urlInfo( "https://perlfoundation.org/artistic_license_2_0", "79a5a5d832b801579bf6f9b29ec87614f79e6513", "text/html", true, false ) - .urlInfo( "https://www.perlfoundation.org/artistic_license_2_0", "79a5a5d832b801579bf6f9b29ec87614f79e6513", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/artistic-license-2.0", "b2517818a4c1216ffd0e5cb81d5fab75b20a9836", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/artistic-license-2.0", "b2517818a4c1216ffd0e5cb81d5fab75b20a9836", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/artistic-license-2.0", "b2517818a4c1216ffd0e5cb81d5fab75b20a9836", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/artistic-license-2.0", "b2517818a4c1216ffd0e5cb81d5fab75b20a9836", "text/html", true, true ) + .urlInfo( "http://perlfoundation.org/artistic_license_2_0", "2aa74311fcf75af8005e37705f49552b9010a2db", "text/html", true, false ) + .urlInfo( "http://www.perlfoundation.org/artistic_license_2_0", "2aa74311fcf75af8005e37705f49552b9010a2db", "text/html", true, false ) + .urlInfo( "https://perlfoundation.org/artistic_license_2_0", "2aa74311fcf75af8005e37705f49552b9010a2db", "text/html", true, false ) + .urlInfo( "https://www.perlfoundation.org/artistic_license_2_0", "2aa74311fcf75af8005e37705f49552b9010a2db", "text/html", true, false ) + .urlInfo( "http://opensource.org/licenses/artistic-license-2.0", "29e7bfae77279c8d36f6fb64c5b500dc3ee174b4", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/artistic-license-2.0", "29e7bfae77279c8d36f6fb64c5b500dc3ee174b4", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/artistic-license-2.0", "29e7bfae77279c8d36f6fb64c5b500dc3ee174b4", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/artistic-license-2.0", "29e7bfae77279c8d36f6fb64c5b500dc3ee174b4", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -625,10 +674,22 @@ static SpdxLicenseList createList() .licenseId( "BSD-2-Clause" ) .seeAlso( "https://opensource.org/licenses/BSD-2-Clause" ) - .urlInfo( "http://opensource.org/licenses/BSD-2-Clause", "76fdee75b52e9a2f0fef6378ffa16def650fbc71", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/BSD-2-Clause", "76fdee75b52e9a2f0fef6378ffa16def650fbc71", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/BSD-2-Clause", "76fdee75b52e9a2f0fef6378ffa16def650fbc71", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/BSD-2-Clause", "76fdee75b52e9a2f0fef6378ffa16def650fbc71", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/BSD-2-Clause", "3691ecd9ecce87fd6b145a4de2d5aa63130ab3c9", "text/html", false, true ) + .urlInfo( "http://opensource.org/licenses/bsd-license", "3691ecd9ecce87fd6b145a4de2d5aa63130ab3c9", "text/html", false, true ) + .urlInfo( "http://opensource.org/licenses/bsd-license.html", "3691ecd9ecce87fd6b145a4de2d5aa63130ab3c9", "text/html", false, true ) + .urlInfo( "http://opensource.org/licenses/bsd-license.php", "3691ecd9ecce87fd6b145a4de2d5aa63130ab3c9", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/BSD-2-Clause", "3691ecd9ecce87fd6b145a4de2d5aa63130ab3c9", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/bsd-license", "3691ecd9ecce87fd6b145a4de2d5aa63130ab3c9", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/bsd-license.html", "3691ecd9ecce87fd6b145a4de2d5aa63130ab3c9", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/bsd-license.php", "3691ecd9ecce87fd6b145a4de2d5aa63130ab3c9", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/BSD-2-Clause", "3691ecd9ecce87fd6b145a4de2d5aa63130ab3c9", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/bsd-license", "3691ecd9ecce87fd6b145a4de2d5aa63130ab3c9", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/bsd-license.html", "3691ecd9ecce87fd6b145a4de2d5aa63130ab3c9", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/bsd-license.php", "3691ecd9ecce87fd6b145a4de2d5aa63130ab3c9", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/BSD-2-Clause", "3691ecd9ecce87fd6b145a4de2d5aa63130ab3c9", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/bsd-license", "3691ecd9ecce87fd6b145a4de2d5aa63130ab3c9", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/bsd-license.html", "3691ecd9ecce87fd6b145a4de2d5aa63130ab3c9", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/bsd-license.php", "3691ecd9ecce87fd6b145a4de2d5aa63130ab3c9", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -674,10 +735,10 @@ static SpdxLicenseList createList() .licenseId( "BSD-2-Clause-Patent" ) .seeAlso( "https://opensource.org/licenses/BSDplusPatent" ) - .urlInfo( "http://opensource.org/licenses/BSDplusPatent", "6ef965b512c89e0683598329e20d4412af5e9374", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/BSDplusPatent", "6ef965b512c89e0683598329e20d4412af5e9374", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/BSDplusPatent", "6ef965b512c89e0683598329e20d4412af5e9374", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/BSDplusPatent", "6ef965b512c89e0683598329e20d4412af5e9374", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/BSDplusPatent", "8a77f299f28986a93af128d28ce8292fa00a207b", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/BSDplusPatent", "8a77f299f28986a93af128d28ce8292fa00a207b", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/BSDplusPatent", "8a77f299f28986a93af128d28ce8292fa00a207b", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/BSDplusPatent", "8a77f299f28986a93af128d28ce8292fa00a207b", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -691,10 +752,10 @@ static SpdxLicenseList createList() .licenseId( "BSD-3-Clause" ) .seeAlso( "https://opensource.org/licenses/BSD-3-Clause" ) - .urlInfo( "http://opensource.org/licenses/BSD-3-Clause", "47eb016bca74a25c1c43b0923710ef7f1845474e", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/BSD-3-Clause", "47eb016bca74a25c1c43b0923710ef7f1845474e", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/BSD-3-Clause", "47eb016bca74a25c1c43b0923710ef7f1845474e", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/BSD-3-Clause", "47eb016bca74a25c1c43b0923710ef7f1845474e", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/BSD-3-Clause", "b9a0fe3005500a72151d223684b818dd73bf3078", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/BSD-3-Clause", "b9a0fe3005500a72151d223684b818dd73bf3078", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/BSD-3-Clause", "b9a0fe3005500a72151d223684b818dd73bf3078", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/BSD-3-Clause", "b9a0fe3005500a72151d223684b818dd73bf3078", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -707,10 +768,7 @@ static SpdxLicenseList createList() .licenseId( "BSD-3-Clause-Attribution" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/BSD_with_Attribution", "80b0acc26d7eb5a2d48068d8c2480530b9948823", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/BSD_with_Attribution", "80b0acc26d7eb5a2d48068d8c2480530b9948823", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution", "80b0acc26d7eb5a2d48068d8c2480530b9948823", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/BSD_with_Attribution", "80b0acc26d7eb5a2d48068d8c2480530b9948823", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution", null, null, false, true ) .isOsiApproved( false ) .build() ); @@ -735,7 +793,10 @@ static SpdxLicenseList createList() .licenseId( "BSD-3-Clause-LBNL" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/LBNLBSD" ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/LBNLBSD", null, null, false, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/LBNLBSD", "f107ca803195f4824e3bac77bc3d2ed75b16bee3", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/LBNLBSD", "f107ca803195f4824e3bac77bc3d2ed75b16bee3", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/LBNLBSD", "f107ca803195f4824e3bac77bc3d2ed75b16bee3", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/LBNLBSD", "f107ca803195f4824e3bac77bc3d2ed75b16bee3", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -790,6 +851,9 @@ static SpdxLicenseList createList() .name( "BSD 4-Clause \"Original\" or \"Old\" License" ) .licenseId( "BSD-4-Clause" ) .seeAlso( "http://directory.fsf.org/wiki/License:BSD_4Clause" ) + + .urlInfo( "http://directory.fsf.org/wiki/License:BSD_4Clause", "0b20ca3cc475ced7071f8f137d5fb8c0020bbed3", "text/html", true, true ) + .urlInfo( "https://directory.fsf.org/wiki/License:BSD_4Clause", "0b20ca3cc475ced7071f8f137d5fb8c0020bbed3", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -818,10 +882,10 @@ static SpdxLicenseList createList() .licenseId( "BSD-Protection" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/BSD_Protection_License" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/BSD_Protection_License", "721bfd7f2049ad3ad95f5014055f5d1a8ef3d41d", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/BSD_Protection_License", "721bfd7f2049ad3ad95f5014055f5d1a8ef3d41d", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/BSD_Protection_License", "721bfd7f2049ad3ad95f5014055f5d1a8ef3d41d", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/BSD_Protection_License", "721bfd7f2049ad3ad95f5014055f5d1a8ef3d41d", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/BSD_Protection_License", "b8e72b3aa43ded00f63d78806ebf14c72cd62302", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/BSD_Protection_License", "b8e72b3aa43ded00f63d78806ebf14c72cd62302", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/BSD_Protection_License", "b8e72b3aa43ded00f63d78806ebf14c72cd62302", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/BSD_Protection_License", "b8e72b3aa43ded00f63d78806ebf14c72cd62302", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -851,10 +915,10 @@ static SpdxLicenseList createList() .urlInfo( "http://www.boost.org/LICENSE_1_0.txt", "3cba29011be2b9d59f6204d6fa0a386b1b2dbd90", "text/plain", true, false ) .urlInfo( "https://boost.org/LICENSE_1_0.txt", "3cba29011be2b9d59f6204d6fa0a386b1b2dbd90", "text/plain", true, false ) .urlInfo( "https://www.boost.org/LICENSE_1_0.txt", "3cba29011be2b9d59f6204d6fa0a386b1b2dbd90", "text/plain", true, false ) - .urlInfo( "http://opensource.org/licenses/BSL-1.0", "b968a951ea14721dd9c613e3055efc31a72e6eec", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/BSL-1.0", "b968a951ea14721dd9c613e3055efc31a72e6eec", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/BSL-1.0", "b968a951ea14721dd9c613e3055efc31a72e6eec", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/BSL-1.0", "b968a951ea14721dd9c613e3055efc31a72e6eec", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/BSL-1.0", "ee439b84bb4b077bee9a4f9998c9a8b67858b3c5", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/BSL-1.0", "ee439b84bb4b077bee9a4f9998c9a8b67858b3c5", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/BSL-1.0", "ee439b84bb4b077bee9a4f9998c9a8b67858b3c5", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/BSL-1.0", "ee439b84bb4b077bee9a4f9998c9a8b67858b3c5", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -867,10 +931,10 @@ static SpdxLicenseList createList() .licenseId( "Bahyph" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Bahyph" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Bahyph", "ed1b8b5ce959deced0145fc3098904ec2ba6ad51", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Bahyph", "ed1b8b5ce959deced0145fc3098904ec2ba6ad51", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Bahyph", "ed1b8b5ce959deced0145fc3098904ec2ba6ad51", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Bahyph", "ed1b8b5ce959deced0145fc3098904ec2ba6ad51", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Bahyph", "575b493b013b9d8e0bb3f19462f00ee4704f9d6d", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Bahyph", "575b493b013b9d8e0bb3f19462f00ee4704f9d6d", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Bahyph", "575b493b013b9d8e0bb3f19462f00ee4704f9d6d", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Bahyph", "575b493b013b9d8e0bb3f19462f00ee4704f9d6d", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -883,10 +947,10 @@ static SpdxLicenseList createList() .licenseId( "Barr" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Barr" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Barr", "0f04b7576e071368ff0f4a100f4e10ecb10240ca", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Barr", "0f04b7576e071368ff0f4a100f4e10ecb10240ca", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Barr", "0f04b7576e071368ff0f4a100f4e10ecb10240ca", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Barr", "0f04b7576e071368ff0f4a100f4e10ecb10240ca", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Barr", "8c941d32a6ff7d840410ca8fa5fee3bacd8d9946", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Barr", "8c941d32a6ff7d840410ca8fa5fee3bacd8d9946", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Barr", "8c941d32a6ff7d840410ca8fa5fee3bacd8d9946", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Barr", "8c941d32a6ff7d840410ca8fa5fee3bacd8d9946", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -900,10 +964,10 @@ static SpdxLicenseList createList() .seeAlso( "https://fedoraproject.org/wiki/Licensing/Beerware" ) .seeAlso( "https://people.freebsd.org/~phk/" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Beerware", "960424cfb2e4527065c5678b0a2cce4893154dfa", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Beerware", "960424cfb2e4527065c5678b0a2cce4893154dfa", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Beerware", "960424cfb2e4527065c5678b0a2cce4893154dfa", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Beerware", "960424cfb2e4527065c5678b0a2cce4893154dfa", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Beerware", "4616e61ccf6f11e80210f8434eb2e5a44775dc67", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Beerware", "4616e61ccf6f11e80210f8434eb2e5a44775dc67", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Beerware", "4616e61ccf6f11e80210f8434eb2e5a44775dc67", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Beerware", "4616e61ccf6f11e80210f8434eb2e5a44775dc67", "text/html", true, true ) .urlInfo( "http://people.freebsd.org/~phk/", "8941cb77388e1fc73ec5a714ae571103c101b4fd", "text/html", true, false ) .urlInfo( "https://people.freebsd.org/~phk/", "8941cb77388e1fc73ec5a714ae571103c101b4fd", "text/html", true, false ) .isOsiApproved( false ) @@ -933,7 +997,8 @@ static SpdxLicenseList createList() .licenseId( "BitTorrent-1.1" ) .seeAlso( "http://directory.fsf.org/wiki/License:BitTorrentOSL1.1" ) - .urlInfo( "http://directory.fsf.org/wiki/License:BitTorrentOSL1.1", null, null, false, true ) + .urlInfo( "http://directory.fsf.org/wiki/License:BitTorrentOSL1.1", "043ac5c3dc68984134f1209dd565165a4076047e", "text/html", true, true ) + .urlInfo( "https://directory.fsf.org/wiki/License:BitTorrentOSL1.1", "043ac5c3dc68984134f1209dd565165a4076047e", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -946,10 +1011,8 @@ static SpdxLicenseList createList() .licenseId( "Borceux" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Borceux" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Borceux", "faeaa0717846317b62bbabaefa5c1703c935edec", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Borceux", "faeaa0717846317b62bbabaefa5c1703c935edec", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Borceux", "faeaa0717846317b62bbabaefa5c1703c935edec", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Borceux", "faeaa0717846317b62bbabaefa5c1703c935edec", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Borceux", "b7222363c4ffc3706a2b79a372452594da1e967b", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Borceux", "b7222363c4ffc3706a2b79a372452594da1e967b", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -962,10 +1025,10 @@ static SpdxLicenseList createList() .licenseId( "CATOSL-1.1" ) .seeAlso( "https://opensource.org/licenses/CATOSL-1.1" ) - .urlInfo( "http://opensource.org/licenses/CATOSL-1.1", "f9c4491be51f3a8113a0f3df07e8c1cda84e3203", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/CATOSL-1.1", "f9c4491be51f3a8113a0f3df07e8c1cda84e3203", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/CATOSL-1.1", "f9c4491be51f3a8113a0f3df07e8c1cda84e3203", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/CATOSL-1.1", "f9c4491be51f3a8113a0f3df07e8c1cda84e3203", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/CATOSL-1.1", "ac48daa5f1d287b7676eaf5c23c2fd19e8ddd2a9", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/CATOSL-1.1", "ac48daa5f1d287b7676eaf5c23c2fd19e8ddd2a9", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/CATOSL-1.1", "ac48daa5f1d287b7676eaf5c23c2fd19e8ddd2a9", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/CATOSL-1.1", "ac48daa5f1d287b7676eaf5c23c2fd19e8ddd2a9", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -1026,10 +1089,10 @@ static SpdxLicenseList createList() .licenseId( "CC-BY-3.0" ) .seeAlso( "https://creativecommons.org/licenses/by/3.0/legalcode" ) - .urlInfo( "http://creativecommons.org/licenses/by/3.0/legalcode", "7af76a69c93b33793f19f9ea648c6ba727cd8e9c", "text/html", true, true ) - .urlInfo( "http://www.creativecommons.org/licenses/by/3.0/legalcode", "7af76a69c93b33793f19f9ea648c6ba727cd8e9c", "text/html", true, true ) - .urlInfo( "https://creativecommons.org/licenses/by/3.0/legalcode", "7af76a69c93b33793f19f9ea648c6ba727cd8e9c", "text/html", true, true ) - .urlInfo( "https://www.creativecommons.org/licenses/by/3.0/legalcode", "7af76a69c93b33793f19f9ea648c6ba727cd8e9c", "text/html", true, true ) + .urlInfo( "http://creativecommons.org/licenses/by/3.0/legalcode", "e835a69859b9fc6d35961a58e0e9b32e1d2dff5e", "text/html", true, true ) + .urlInfo( "http://www.creativecommons.org/licenses/by/3.0/legalcode", "e835a69859b9fc6d35961a58e0e9b32e1d2dff5e", "text/html", true, true ) + .urlInfo( "https://creativecommons.org/licenses/by/3.0/legalcode", "e835a69859b9fc6d35961a58e0e9b32e1d2dff5e", "text/html", true, true ) + .urlInfo( "https://www.creativecommons.org/licenses/by/3.0/legalcode", "e835a69859b9fc6d35961a58e0e9b32e1d2dff5e", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1043,10 +1106,10 @@ static SpdxLicenseList createList() .licenseId( "CC-BY-4.0" ) .seeAlso( "https://creativecommons.org/licenses/by/4.0/legalcode" ) - .urlInfo( "http://creativecommons.org/licenses/by/4.0/legalcode", "3de8294f0eee052f7b51155f4c9bfa53d474dae6", "text/html", true, true ) - .urlInfo( "http://www.creativecommons.org/licenses/by/4.0/legalcode", "3de8294f0eee052f7b51155f4c9bfa53d474dae6", "text/html", true, true ) - .urlInfo( "https://creativecommons.org/licenses/by/4.0/legalcode", "3de8294f0eee052f7b51155f4c9bfa53d474dae6", "text/html", true, true ) - .urlInfo( "https://www.creativecommons.org/licenses/by/4.0/legalcode", "3de8294f0eee052f7b51155f4c9bfa53d474dae6", "text/html", true, true ) + .urlInfo( "http://creativecommons.org/licenses/by/4.0/legalcode", "ed63d6dc37abf705c1435e481ff840c3279c6afe", "text/html", true, true ) + .urlInfo( "http://www.creativecommons.org/licenses/by/4.0/legalcode", "ed63d6dc37abf705c1435e481ff840c3279c6afe", "text/html", true, true ) + .urlInfo( "https://creativecommons.org/licenses/by/4.0/legalcode", "ed63d6dc37abf705c1435e481ff840c3279c6afe", "text/html", true, true ) + .urlInfo( "https://www.creativecommons.org/licenses/by/4.0/legalcode", "ed63d6dc37abf705c1435e481ff840c3279c6afe", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1075,10 +1138,10 @@ static SpdxLicenseList createList() .licenseId( "CC-BY-NC-2.0" ) .seeAlso( "https://creativecommons.org/licenses/by-nc/2.0/legalcode" ) - .urlInfo( "http://creativecommons.org/licenses/by-nc/2.0/legalcode", "2b790767c82ad1f57588c34bc75ce9d562c010d6", "text/html", true, true ) - .urlInfo( "http://www.creativecommons.org/licenses/by-nc/2.0/legalcode", "2b790767c82ad1f57588c34bc75ce9d562c010d6", "text/html", true, true ) - .urlInfo( "https://creativecommons.org/licenses/by-nc/2.0/legalcode", "2b790767c82ad1f57588c34bc75ce9d562c010d6", "text/html", true, true ) - .urlInfo( "https://www.creativecommons.org/licenses/by-nc/2.0/legalcode", "2b790767c82ad1f57588c34bc75ce9d562c010d6", "text/html", true, true ) + .urlInfo( "http://creativecommons.org/licenses/by-nc/2.0/legalcode", "35bfa32370d94a02d195222e876d48fe5e2bd58c", "text/html", true, true ) + .urlInfo( "http://www.creativecommons.org/licenses/by-nc/2.0/legalcode", "35bfa32370d94a02d195222e876d48fe5e2bd58c", "text/html", true, true ) + .urlInfo( "https://creativecommons.org/licenses/by-nc/2.0/legalcode", "35bfa32370d94a02d195222e876d48fe5e2bd58c", "text/html", true, true ) + .urlInfo( "https://www.creativecommons.org/licenses/by-nc/2.0/legalcode", "35bfa32370d94a02d195222e876d48fe5e2bd58c", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1091,10 +1154,10 @@ static SpdxLicenseList createList() .licenseId( "CC-BY-NC-2.5" ) .seeAlso( "https://creativecommons.org/licenses/by-nc/2.5/legalcode" ) - .urlInfo( "http://creativecommons.org/licenses/by-nc/2.5/legalcode", "8380833276a77b9046c1d9359dca6aacc7115464", "text/html", true, true ) - .urlInfo( "http://www.creativecommons.org/licenses/by-nc/2.5/legalcode", "8380833276a77b9046c1d9359dca6aacc7115464", "text/html", true, true ) - .urlInfo( "https://creativecommons.org/licenses/by-nc/2.5/legalcode", "8380833276a77b9046c1d9359dca6aacc7115464", "text/html", true, true ) - .urlInfo( "https://www.creativecommons.org/licenses/by-nc/2.5/legalcode", "8380833276a77b9046c1d9359dca6aacc7115464", "text/html", true, true ) + .urlInfo( "http://creativecommons.org/licenses/by-nc/2.5/legalcode", "88ae72783ef4d55eb5eac0256fb9cbefee9d10cd", "text/html", true, true ) + .urlInfo( "http://www.creativecommons.org/licenses/by-nc/2.5/legalcode", "88ae72783ef4d55eb5eac0256fb9cbefee9d10cd", "text/html", true, true ) + .urlInfo( "https://creativecommons.org/licenses/by-nc/2.5/legalcode", "88ae72783ef4d55eb5eac0256fb9cbefee9d10cd", "text/html", true, true ) + .urlInfo( "https://www.creativecommons.org/licenses/by-nc/2.5/legalcode", "88ae72783ef4d55eb5eac0256fb9cbefee9d10cd", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1107,10 +1170,10 @@ static SpdxLicenseList createList() .licenseId( "CC-BY-NC-3.0" ) .seeAlso( "https://creativecommons.org/licenses/by-nc/3.0/legalcode" ) - .urlInfo( "http://creativecommons.org/licenses/by-nc/3.0/legalcode", "4b9db592867e6c9e3df0a9f9da59c5059920dda5", "text/html", true, true ) - .urlInfo( "http://www.creativecommons.org/licenses/by-nc/3.0/legalcode", "4b9db592867e6c9e3df0a9f9da59c5059920dda5", "text/html", true, true ) - .urlInfo( "https://creativecommons.org/licenses/by-nc/3.0/legalcode", "4b9db592867e6c9e3df0a9f9da59c5059920dda5", "text/html", true, true ) - .urlInfo( "https://www.creativecommons.org/licenses/by-nc/3.0/legalcode", "4b9db592867e6c9e3df0a9f9da59c5059920dda5", "text/html", true, true ) + .urlInfo( "http://creativecommons.org/licenses/by-nc/3.0/legalcode", "7da12f32b86edbafa37e0e1ce8072271a5b99a33", "text/html", true, true ) + .urlInfo( "http://www.creativecommons.org/licenses/by-nc/3.0/legalcode", "7da12f32b86edbafa37e0e1ce8072271a5b99a33", "text/html", true, true ) + .urlInfo( "https://creativecommons.org/licenses/by-nc/3.0/legalcode", "7da12f32b86edbafa37e0e1ce8072271a5b99a33", "text/html", true, true ) + .urlInfo( "https://www.creativecommons.org/licenses/by-nc/3.0/legalcode", "7da12f32b86edbafa37e0e1ce8072271a5b99a33", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1123,10 +1186,10 @@ static SpdxLicenseList createList() .licenseId( "CC-BY-NC-4.0" ) .seeAlso( "https://creativecommons.org/licenses/by-nc/4.0/legalcode" ) - .urlInfo( "http://creativecommons.org/licenses/by-nc/4.0/legalcode", "e79552a1a2bdf470cebb117d888c400b828c6f8d", "text/html", true, true ) - .urlInfo( "http://www.creativecommons.org/licenses/by-nc/4.0/legalcode", "e79552a1a2bdf470cebb117d888c400b828c6f8d", "text/html", true, true ) - .urlInfo( "https://creativecommons.org/licenses/by-nc/4.0/legalcode", "e79552a1a2bdf470cebb117d888c400b828c6f8d", "text/html", true, true ) - .urlInfo( "https://www.creativecommons.org/licenses/by-nc/4.0/legalcode", "e79552a1a2bdf470cebb117d888c400b828c6f8d", "text/html", true, true ) + .urlInfo( "http://creativecommons.org/licenses/by-nc/4.0/legalcode", "44476cc5b9fcb74dd435a2d01a429d74dedca620", "text/html", true, true ) + .urlInfo( "http://www.creativecommons.org/licenses/by-nc/4.0/legalcode", "44476cc5b9fcb74dd435a2d01a429d74dedca620", "text/html", true, true ) + .urlInfo( "https://creativecommons.org/licenses/by-nc/4.0/legalcode", "44476cc5b9fcb74dd435a2d01a429d74dedca620", "text/html", true, true ) + .urlInfo( "https://www.creativecommons.org/licenses/by-nc/4.0/legalcode", "44476cc5b9fcb74dd435a2d01a429d74dedca620", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1155,10 +1218,10 @@ static SpdxLicenseList createList() .licenseId( "CC-BY-NC-ND-2.0" ) .seeAlso( "https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode" ) - .urlInfo( "http://creativecommons.org/licenses/by-nc-nd/2.0/legalcode", "600bcd7c266ae06a0ff9afda1079a81473852869", "text/html", true, true ) - .urlInfo( "http://www.creativecommons.org/licenses/by-nc-nd/2.0/legalcode", "600bcd7c266ae06a0ff9afda1079a81473852869", "text/html", true, true ) - .urlInfo( "https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode", "600bcd7c266ae06a0ff9afda1079a81473852869", "text/html", true, true ) - .urlInfo( "https://www.creativecommons.org/licenses/by-nc-nd/2.0/legalcode", "600bcd7c266ae06a0ff9afda1079a81473852869", "text/html", true, true ) + .urlInfo( "http://creativecommons.org/licenses/by-nc-nd/2.0/legalcode", "83b8df6fd3e783805bb2ecbc2e435b66697d0e21", "text/html", true, true ) + .urlInfo( "http://www.creativecommons.org/licenses/by-nc-nd/2.0/legalcode", "83b8df6fd3e783805bb2ecbc2e435b66697d0e21", "text/html", true, true ) + .urlInfo( "https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode", "83b8df6fd3e783805bb2ecbc2e435b66697d0e21", "text/html", true, true ) + .urlInfo( "https://www.creativecommons.org/licenses/by-nc-nd/2.0/legalcode", "83b8df6fd3e783805bb2ecbc2e435b66697d0e21", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1171,10 +1234,10 @@ static SpdxLicenseList createList() .licenseId( "CC-BY-NC-ND-2.5" ) .seeAlso( "https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode" ) - .urlInfo( "http://creativecommons.org/licenses/by-nc-nd/2.5/legalcode", "ea051b1ef90360c0bfac2310645310a16f1f4967", "text/html", true, true ) - .urlInfo( "http://www.creativecommons.org/licenses/by-nc-nd/2.5/legalcode", "ea051b1ef90360c0bfac2310645310a16f1f4967", "text/html", true, true ) - .urlInfo( "https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode", "ea051b1ef90360c0bfac2310645310a16f1f4967", "text/html", true, true ) - .urlInfo( "https://www.creativecommons.org/licenses/by-nc-nd/2.5/legalcode", "ea051b1ef90360c0bfac2310645310a16f1f4967", "text/html", true, true ) + .urlInfo( "http://creativecommons.org/licenses/by-nc-nd/2.5/legalcode", "a24c08f634f31bf44e54167e1c7516fa693d7b16", "text/html", true, true ) + .urlInfo( "http://www.creativecommons.org/licenses/by-nc-nd/2.5/legalcode", "a24c08f634f31bf44e54167e1c7516fa693d7b16", "text/html", true, true ) + .urlInfo( "https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode", "a24c08f634f31bf44e54167e1c7516fa693d7b16", "text/html", true, true ) + .urlInfo( "https://www.creativecommons.org/licenses/by-nc-nd/2.5/legalcode", "a24c08f634f31bf44e54167e1c7516fa693d7b16", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1187,10 +1250,10 @@ static SpdxLicenseList createList() .licenseId( "CC-BY-NC-ND-3.0" ) .seeAlso( "https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode" ) - .urlInfo( "http://creativecommons.org/licenses/by-nc-nd/3.0/legalcode", "8e436a3cf57e16d0a1ad1db2218ae8b9a4c16221", "text/html", true, true ) - .urlInfo( "http://www.creativecommons.org/licenses/by-nc-nd/3.0/legalcode", "8e436a3cf57e16d0a1ad1db2218ae8b9a4c16221", "text/html", true, true ) - .urlInfo( "https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode", "8e436a3cf57e16d0a1ad1db2218ae8b9a4c16221", "text/html", true, true ) - .urlInfo( "https://www.creativecommons.org/licenses/by-nc-nd/3.0/legalcode", "8e436a3cf57e16d0a1ad1db2218ae8b9a4c16221", "text/html", true, true ) + .urlInfo( "http://creativecommons.org/licenses/by-nc-nd/3.0/legalcode", "905faafd2a41dcae56893ded471ce0ea6ff19122", "text/html", true, true ) + .urlInfo( "http://www.creativecommons.org/licenses/by-nc-nd/3.0/legalcode", "905faafd2a41dcae56893ded471ce0ea6ff19122", "text/html", true, true ) + .urlInfo( "https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode", "905faafd2a41dcae56893ded471ce0ea6ff19122", "text/html", true, true ) + .urlInfo( "https://www.creativecommons.org/licenses/by-nc-nd/3.0/legalcode", "905faafd2a41dcae56893ded471ce0ea6ff19122", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1203,10 +1266,10 @@ static SpdxLicenseList createList() .licenseId( "CC-BY-NC-ND-4.0" ) .seeAlso( "https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode" ) - .urlInfo( "http://creativecommons.org/licenses/by-nc-nd/4.0/legalcode", "b95e13e31497f071151d9c0b641d6d3d6a44c187", "text/html", true, true ) - .urlInfo( "http://www.creativecommons.org/licenses/by-nc-nd/4.0/legalcode", "b95e13e31497f071151d9c0b641d6d3d6a44c187", "text/html", true, true ) - .urlInfo( "https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode", "b95e13e31497f071151d9c0b641d6d3d6a44c187", "text/html", true, true ) - .urlInfo( "https://www.creativecommons.org/licenses/by-nc-nd/4.0/legalcode", "b95e13e31497f071151d9c0b641d6d3d6a44c187", "text/html", true, true ) + .urlInfo( "http://creativecommons.org/licenses/by-nc-nd/4.0/legalcode", "8386ae9787526c0e4c8c5d8c404167635a73799b", "text/html", true, true ) + .urlInfo( "http://www.creativecommons.org/licenses/by-nc-nd/4.0/legalcode", "8386ae9787526c0e4c8c5d8c404167635a73799b", "text/html", true, true ) + .urlInfo( "https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode", "8386ae9787526c0e4c8c5d8c404167635a73799b", "text/html", true, true ) + .urlInfo( "https://www.creativecommons.org/licenses/by-nc-nd/4.0/legalcode", "8386ae9787526c0e4c8c5d8c404167635a73799b", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1235,10 +1298,10 @@ static SpdxLicenseList createList() .licenseId( "CC-BY-NC-SA-2.0" ) .seeAlso( "https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode" ) - .urlInfo( "http://creativecommons.org/licenses/by-nc-sa/2.0/legalcode", "0b49d0b35f1f4edd28a6899c29d4ca20ff06906d", "text/html", true, true ) - .urlInfo( "http://www.creativecommons.org/licenses/by-nc-sa/2.0/legalcode", "0b49d0b35f1f4edd28a6899c29d4ca20ff06906d", "text/html", true, true ) - .urlInfo( "https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode", "0b49d0b35f1f4edd28a6899c29d4ca20ff06906d", "text/html", true, true ) - .urlInfo( "https://www.creativecommons.org/licenses/by-nc-sa/2.0/legalcode", "0b49d0b35f1f4edd28a6899c29d4ca20ff06906d", "text/html", true, true ) + .urlInfo( "http://creativecommons.org/licenses/by-nc-sa/2.0/legalcode", "9181e9056085ef74e0ba49016fc1a4cb7612ba6d", "text/html", true, true ) + .urlInfo( "http://www.creativecommons.org/licenses/by-nc-sa/2.0/legalcode", "9181e9056085ef74e0ba49016fc1a4cb7612ba6d", "text/html", true, true ) + .urlInfo( "https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode", "9181e9056085ef74e0ba49016fc1a4cb7612ba6d", "text/html", true, true ) + .urlInfo( "https://www.creativecommons.org/licenses/by-nc-sa/2.0/legalcode", "9181e9056085ef74e0ba49016fc1a4cb7612ba6d", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1251,10 +1314,10 @@ static SpdxLicenseList createList() .licenseId( "CC-BY-NC-SA-2.5" ) .seeAlso( "https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode" ) - .urlInfo( "http://creativecommons.org/licenses/by-nc-sa/2.5/legalcode", "f3cc9c702bc0b6b5701c6d36cfc7f992f6b284f0", "text/html", true, true ) - .urlInfo( "http://www.creativecommons.org/licenses/by-nc-sa/2.5/legalcode", "f3cc9c702bc0b6b5701c6d36cfc7f992f6b284f0", "text/html", true, true ) - .urlInfo( "https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode", "f3cc9c702bc0b6b5701c6d36cfc7f992f6b284f0", "text/html", true, true ) - .urlInfo( "https://www.creativecommons.org/licenses/by-nc-sa/2.5/legalcode", "f3cc9c702bc0b6b5701c6d36cfc7f992f6b284f0", "text/html", true, true ) + .urlInfo( "http://creativecommons.org/licenses/by-nc-sa/2.5/legalcode", "4c4f5e5f2b0810f94da50c9847b7507d04019850", "text/html", true, true ) + .urlInfo( "http://www.creativecommons.org/licenses/by-nc-sa/2.5/legalcode", "4c4f5e5f2b0810f94da50c9847b7507d04019850", "text/html", true, true ) + .urlInfo( "https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode", "4c4f5e5f2b0810f94da50c9847b7507d04019850", "text/html", true, true ) + .urlInfo( "https://www.creativecommons.org/licenses/by-nc-sa/2.5/legalcode", "4c4f5e5f2b0810f94da50c9847b7507d04019850", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1267,10 +1330,10 @@ static SpdxLicenseList createList() .licenseId( "CC-BY-NC-SA-3.0" ) .seeAlso( "https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode" ) - .urlInfo( "http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode", "ef67115b7cd9c400b30cd6918fac5e786adeb461", "text/html", true, true ) - .urlInfo( "http://www.creativecommons.org/licenses/by-nc-sa/3.0/legalcode", "ef67115b7cd9c400b30cd6918fac5e786adeb461", "text/html", true, true ) - .urlInfo( "https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode", "ef67115b7cd9c400b30cd6918fac5e786adeb461", "text/html", true, true ) - .urlInfo( "https://www.creativecommons.org/licenses/by-nc-sa/3.0/legalcode", "ef67115b7cd9c400b30cd6918fac5e786adeb461", "text/html", true, true ) + .urlInfo( "http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode", "236903de80ec689d31a25a290e28127ec7ed5d35", "text/html", true, true ) + .urlInfo( "http://www.creativecommons.org/licenses/by-nc-sa/3.0/legalcode", "236903de80ec689d31a25a290e28127ec7ed5d35", "text/html", true, true ) + .urlInfo( "https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode", "236903de80ec689d31a25a290e28127ec7ed5d35", "text/html", true, true ) + .urlInfo( "https://www.creativecommons.org/licenses/by-nc-sa/3.0/legalcode", "236903de80ec689d31a25a290e28127ec7ed5d35", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1283,10 +1346,10 @@ static SpdxLicenseList createList() .licenseId( "CC-BY-NC-SA-4.0" ) .seeAlso( "https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode" ) - .urlInfo( "http://creativecommons.org/licenses/by-nc-sa/4.0/legalcode", "9ad6ed6dae48020e52d046a6c0ecfa6f5398d540", "text/html", true, true ) - .urlInfo( "http://www.creativecommons.org/licenses/by-nc-sa/4.0/legalcode", "9ad6ed6dae48020e52d046a6c0ecfa6f5398d540", "text/html", true, true ) - .urlInfo( "https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode", "9ad6ed6dae48020e52d046a6c0ecfa6f5398d540", "text/html", true, true ) - .urlInfo( "https://www.creativecommons.org/licenses/by-nc-sa/4.0/legalcode", "9ad6ed6dae48020e52d046a6c0ecfa6f5398d540", "text/html", true, true ) + .urlInfo( "http://creativecommons.org/licenses/by-nc-sa/4.0/legalcode", "d44a48e6b76e70dc0b07c108001ff32ab8e049ca", "text/html", true, true ) + .urlInfo( "http://www.creativecommons.org/licenses/by-nc-sa/4.0/legalcode", "d44a48e6b76e70dc0b07c108001ff32ab8e049ca", "text/html", true, true ) + .urlInfo( "https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode", "d44a48e6b76e70dc0b07c108001ff32ab8e049ca", "text/html", true, true ) + .urlInfo( "https://www.creativecommons.org/licenses/by-nc-sa/4.0/legalcode", "d44a48e6b76e70dc0b07c108001ff32ab8e049ca", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1315,10 +1378,10 @@ static SpdxLicenseList createList() .licenseId( "CC-BY-ND-2.0" ) .seeAlso( "https://creativecommons.org/licenses/by-nd/2.0/legalcode" ) - .urlInfo( "http://creativecommons.org/licenses/by-nd/2.0/legalcode", "7b72808675433ab5a153f3c71396b71296f68a72", "text/html", true, true ) - .urlInfo( "http://www.creativecommons.org/licenses/by-nd/2.0/legalcode", "7b72808675433ab5a153f3c71396b71296f68a72", "text/html", true, true ) - .urlInfo( "https://creativecommons.org/licenses/by-nd/2.0/legalcode", "7b72808675433ab5a153f3c71396b71296f68a72", "text/html", true, true ) - .urlInfo( "https://www.creativecommons.org/licenses/by-nd/2.0/legalcode", "7b72808675433ab5a153f3c71396b71296f68a72", "text/html", true, true ) + .urlInfo( "http://creativecommons.org/licenses/by-nd/2.0/legalcode", "7efbd82e4f5c5d776b4719ed088932749783b3aa", "text/html", true, true ) + .urlInfo( "http://www.creativecommons.org/licenses/by-nd/2.0/legalcode", "7efbd82e4f5c5d776b4719ed088932749783b3aa", "text/html", true, true ) + .urlInfo( "https://creativecommons.org/licenses/by-nd/2.0/legalcode", "7efbd82e4f5c5d776b4719ed088932749783b3aa", "text/html", true, true ) + .urlInfo( "https://www.creativecommons.org/licenses/by-nd/2.0/legalcode", "7efbd82e4f5c5d776b4719ed088932749783b3aa", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1331,10 +1394,10 @@ static SpdxLicenseList createList() .licenseId( "CC-BY-ND-2.5" ) .seeAlso( "https://creativecommons.org/licenses/by-nd/2.5/legalcode" ) - .urlInfo( "http://creativecommons.org/licenses/by-nd/2.5/legalcode", "7b7790e21639a5219a706dd7924370018f8c6473", "text/html", true, true ) - .urlInfo( "http://www.creativecommons.org/licenses/by-nd/2.5/legalcode", "7b7790e21639a5219a706dd7924370018f8c6473", "text/html", true, true ) - .urlInfo( "https://creativecommons.org/licenses/by-nd/2.5/legalcode", "7b7790e21639a5219a706dd7924370018f8c6473", "text/html", true, true ) - .urlInfo( "https://www.creativecommons.org/licenses/by-nd/2.5/legalcode", "7b7790e21639a5219a706dd7924370018f8c6473", "text/html", true, true ) + .urlInfo( "http://creativecommons.org/licenses/by-nd/2.5/legalcode", "3afdf363d0504cb517c1bc081804631e24e830f6", "text/html", true, true ) + .urlInfo( "http://www.creativecommons.org/licenses/by-nd/2.5/legalcode", "3afdf363d0504cb517c1bc081804631e24e830f6", "text/html", true, true ) + .urlInfo( "https://creativecommons.org/licenses/by-nd/2.5/legalcode", "3afdf363d0504cb517c1bc081804631e24e830f6", "text/html", true, true ) + .urlInfo( "https://www.creativecommons.org/licenses/by-nd/2.5/legalcode", "3afdf363d0504cb517c1bc081804631e24e830f6", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1347,7 +1410,10 @@ static SpdxLicenseList createList() .licenseId( "CC-BY-ND-3.0" ) .seeAlso( "https://creativecommons.org/licenses/by-nd/3.0/legalcode" ) - .urlInfo( "https://creativecommons.org/licenses/by-nd/3.0/legalcode", null, null, false, true ) + .urlInfo( "http://creativecommons.org/licenses/by-nd/3.0/legalcode", "8d14e944cf055939e6904348c44c6694fcca7b83", "text/html", true, true ) + .urlInfo( "http://www.creativecommons.org/licenses/by-nd/3.0/legalcode", "8d14e944cf055939e6904348c44c6694fcca7b83", "text/html", true, true ) + .urlInfo( "https://creativecommons.org/licenses/by-nd/3.0/legalcode", "8d14e944cf055939e6904348c44c6694fcca7b83", "text/html", true, true ) + .urlInfo( "https://www.creativecommons.org/licenses/by-nd/3.0/legalcode", "8d14e944cf055939e6904348c44c6694fcca7b83", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1360,10 +1426,10 @@ static SpdxLicenseList createList() .licenseId( "CC-BY-ND-4.0" ) .seeAlso( "https://creativecommons.org/licenses/by-nd/4.0/legalcode" ) - .urlInfo( "http://creativecommons.org/licenses/by-nd/4.0/legalcode", "d551d08b9ce091b2e9a68603c8bd84836cca1aa0", "text/html", true, true ) - .urlInfo( "http://www.creativecommons.org/licenses/by-nd/4.0/legalcode", "d551d08b9ce091b2e9a68603c8bd84836cca1aa0", "text/html", true, true ) - .urlInfo( "https://creativecommons.org/licenses/by-nd/4.0/legalcode", "d551d08b9ce091b2e9a68603c8bd84836cca1aa0", "text/html", true, true ) - .urlInfo( "https://www.creativecommons.org/licenses/by-nd/4.0/legalcode", "d551d08b9ce091b2e9a68603c8bd84836cca1aa0", "text/html", true, true ) + .urlInfo( "http://creativecommons.org/licenses/by-nd/4.0/legalcode", "2de28c0e56f9df3efba0478521b9954863ee7725", "text/html", true, true ) + .urlInfo( "http://www.creativecommons.org/licenses/by-nd/4.0/legalcode", "2de28c0e56f9df3efba0478521b9954863ee7725", "text/html", true, true ) + .urlInfo( "https://creativecommons.org/licenses/by-nd/4.0/legalcode", "2de28c0e56f9df3efba0478521b9954863ee7725", "text/html", true, true ) + .urlInfo( "https://www.creativecommons.org/licenses/by-nd/4.0/legalcode", "2de28c0e56f9df3efba0478521b9954863ee7725", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1424,7 +1490,10 @@ static SpdxLicenseList createList() .licenseId( "CC-BY-SA-3.0" ) .seeAlso( "https://creativecommons.org/licenses/by-sa/3.0/legalcode" ) - .urlInfo( "https://creativecommons.org/licenses/by-sa/3.0/legalcode", null, null, false, true ) + .urlInfo( "http://creativecommons.org/licenses/by-sa/3.0/legalcode", "d0ac1cd99deeca8d3241f0cb1035b653cc947358", "text/html", true, true ) + .urlInfo( "http://www.creativecommons.org/licenses/by-sa/3.0/legalcode", "d0ac1cd99deeca8d3241f0cb1035b653cc947358", "text/html", true, true ) + .urlInfo( "https://creativecommons.org/licenses/by-sa/3.0/legalcode", "d0ac1cd99deeca8d3241f0cb1035b653cc947358", "text/html", true, true ) + .urlInfo( "https://www.creativecommons.org/licenses/by-sa/3.0/legalcode", "d0ac1cd99deeca8d3241f0cb1035b653cc947358", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1438,10 +1507,9 @@ static SpdxLicenseList createList() .licenseId( "CC-BY-SA-4.0" ) .seeAlso( "https://creativecommons.org/licenses/by-sa/4.0/legalcode" ) - .urlInfo( "http://creativecommons.org/licenses/by-sa/4.0/legalcode", "70390703b82ae4020739c0bad1d71111e1d7fba3", "text/html", true, true ) - .urlInfo( "http://www.creativecommons.org/licenses/by-sa/4.0/legalcode", "70390703b82ae4020739c0bad1d71111e1d7fba3", "text/html", true, true ) - .urlInfo( "https://creativecommons.org/licenses/by-sa/4.0/legalcode", "70390703b82ae4020739c0bad1d71111e1d7fba3", "text/html", true, true ) - .urlInfo( "https://www.creativecommons.org/licenses/by-sa/4.0/legalcode", "70390703b82ae4020739c0bad1d71111e1d7fba3", "text/html", true, true ) + .urlInfo( "http://creativecommons.org/licenses/by-sa/4.0/legalcode", "2db7dade1d369cc2e1298a2d6d7c47410819682d", "text/html", true, true ) + .urlInfo( "https://creativecommons.org/licenses/by-sa/4.0/legalcode", "2db7dade1d369cc2e1298a2d6d7c47410819682d", "text/html", true, true ) + .urlInfo( "https://www.creativecommons.org/licenses/by-sa/4.0/legalcode", "2db7dade1d369cc2e1298a2d6d7c47410819682d", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1455,10 +1523,10 @@ static SpdxLicenseList createList() .licenseId( "CC0-1.0" ) .seeAlso( "https://creativecommons.org/publicdomain/zero/1.0/legalcode" ) - .urlInfo( "http://creativecommons.org/publicdomain/zero/1.0/legalcode", "6f960e0d06f29f18ec5055cb680addb848caec93", "text/html", true, true ) - .urlInfo( "http://www.creativecommons.org/publicdomain/zero/1.0/legalcode", "6f960e0d06f29f18ec5055cb680addb848caec93", "text/html", true, true ) - .urlInfo( "https://creativecommons.org/publicdomain/zero/1.0/legalcode", "6f960e0d06f29f18ec5055cb680addb848caec93", "text/html", true, true ) - .urlInfo( "https://www.creativecommons.org/publicdomain/zero/1.0/legalcode", "6f960e0d06f29f18ec5055cb680addb848caec93", "text/html", true, true ) + .urlInfo( "http://creativecommons.org/publicdomain/zero/1.0/legalcode", "21ad4b5a341800e1ece53b5fd9d7bd7b89692fbc", "text/html", true, true ) + .urlInfo( "http://www.creativecommons.org/publicdomain/zero/1.0/legalcode", "21ad4b5a341800e1ece53b5fd9d7bd7b89692fbc", "text/html", true, true ) + .urlInfo( "https://creativecommons.org/publicdomain/zero/1.0/legalcode", "21ad4b5a341800e1ece53b5fd9d7bd7b89692fbc", "text/html", true, true ) + .urlInfo( "https://www.creativecommons.org/publicdomain/zero/1.0/legalcode", "21ad4b5a341800e1ece53b5fd9d7bd7b89692fbc", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1472,10 +1540,18 @@ static SpdxLicenseList createList() .licenseId( "CDDL-1.0" ) .seeAlso( "https://opensource.org/licenses/cddl1" ) - .urlInfo( "http://opensource.org/licenses/cddl1", "0db087e6948031277a972dbf490cfa260aaaf883", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/cddl1", "0db087e6948031277a972dbf490cfa260aaaf883", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/cddl1", "0db087e6948031277a972dbf490cfa260aaaf883", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/cddl1", "0db087e6948031277a972dbf490cfa260aaaf883", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/cddl1", "58bf0d7faa358fc2d7eb132448544100c4330264", "text/html", false, true ) + .urlInfo( "http://opensource.org/licenses/cddl1.html", "58bf0d7faa358fc2d7eb132448544100c4330264", "text/html", false, true ) + .urlInfo( "http://opensource.org/licenses/cddl1.php", "58bf0d7faa358fc2d7eb132448544100c4330264", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/cddl1", "58bf0d7faa358fc2d7eb132448544100c4330264", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/cddl1.html", "58bf0d7faa358fc2d7eb132448544100c4330264", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/cddl1.php", "58bf0d7faa358fc2d7eb132448544100c4330264", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/cddl1", "58bf0d7faa358fc2d7eb132448544100c4330264", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/cddl1.html", "58bf0d7faa358fc2d7eb132448544100c4330264", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/cddl1.php", "58bf0d7faa358fc2d7eb132448544100c4330264", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/cddl1", "58bf0d7faa358fc2d7eb132448544100c4330264", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/cddl1.html", "58bf0d7faa358fc2d7eb132448544100c4330264", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/cddl1.php", "58bf0d7faa358fc2d7eb132448544100c4330264", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -1505,10 +1581,7 @@ static SpdxLicenseList createList() .licenseId( "CDLA-Permissive-1.0" ) .seeAlso( "https://cdla.io/permissive-1-0" ) - .urlInfo( "http://cdla.io/permissive-1-0", "11f90a27f255e0aa9a30836fc6fc41119b328aa8", "text/html", true, false ) - .urlInfo( "http://www.cdla.io/permissive-1-0", "11f90a27f255e0aa9a30836fc6fc41119b328aa8", "text/html", true, false ) - .urlInfo( "https://cdla.io/permissive-1-0", "11f90a27f255e0aa9a30836fc6fc41119b328aa8", "text/html", true, false ) - .urlInfo( "https://www.cdla.io/permissive-1-0", "11f90a27f255e0aa9a30836fc6fc41119b328aa8", "text/html", true, false ) + .urlInfo( "https://cdla.io/permissive-1-0", null, null, false, false ) .isOsiApproved( false ) .build() ); @@ -1521,10 +1594,7 @@ static SpdxLicenseList createList() .licenseId( "CDLA-Sharing-1.0" ) .seeAlso( "https://cdla.io/sharing-1-0" ) - .urlInfo( "http://cdla.io/sharing-1-0", "0dfdb4f8536f2af263e39475dcfdb48e4c58c072", "text/html", true, false ) - .urlInfo( "http://www.cdla.io/sharing-1-0", "0dfdb4f8536f2af263e39475dcfdb48e4c58c072", "text/html", true, false ) - .urlInfo( "https://cdla.io/sharing-1-0", "0dfdb4f8536f2af263e39475dcfdb48e4c58c072", "text/html", true, false ) - .urlInfo( "https://www.cdla.io/sharing-1-0", "0dfdb4f8536f2af263e39475dcfdb48e4c58c072", "text/html", true, false ) + .urlInfo( "https://cdla.io/sharing-1-0", null, null, false, false ) .isOsiApproved( false ) .build() ); @@ -1622,6 +1692,32 @@ static SpdxLicenseList createList() .build() ); + builder.license( SpdxLicenseInfo.builder() + .reference( "./CERN-OHL-1.1.html" ) + .isDeprecatedLicenseId( false ) + .detailsUrl( "http://spdx.org/licenses/CERN-OHL-1.1.json" ) + .name( "CERN Open Hardware License v1.1" ) + .licenseId( "CERN-OHL-1.1" ) + .seeAlso( "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1" ) + + .urlInfo( "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1", "a3a47f2aeda2a93024b9b05f6b8d0c0b63dfd177", "text/html", true, true ) + .isOsiApproved( false ) + .build() + ); + + builder.license( SpdxLicenseInfo.builder() + .reference( "./CERN-OHL-1.2.html" ) + .isDeprecatedLicenseId( false ) + .detailsUrl( "http://spdx.org/licenses/CERN-OHL-1.2.json" ) + .name( "CERN Open Hardware Licence v1.2" ) + .licenseId( "CERN-OHL-1.2" ) + .seeAlso( "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2" ) + + .urlInfo( "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2", "ffa0b932fbebef003c8b498bce218e287a506686", "text/html", true, true ) + .isOsiApproved( false ) + .build() + ); + builder.license( SpdxLicenseInfo.builder() .reference( "./CNRI-Jython.html" ) .isDeprecatedLicenseId( false ) @@ -1646,10 +1742,10 @@ static SpdxLicenseList createList() .licenseId( "CNRI-Python" ) .seeAlso( "https://opensource.org/licenses/CNRI-Python" ) - .urlInfo( "http://opensource.org/licenses/CNRI-Python", "830c376b1086e94356642705fb2b6ff9cd45ebd2", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/CNRI-Python", "830c376b1086e94356642705fb2b6ff9cd45ebd2", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/CNRI-Python", "830c376b1086e94356642705fb2b6ff9cd45ebd2", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/CNRI-Python", "830c376b1086e94356642705fb2b6ff9cd45ebd2", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/CNRI-Python", "35687aea838758505b7b1b8944efa0f4b1313298", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/CNRI-Python", "35687aea838758505b7b1b8944efa0f4b1313298", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/CNRI-Python", "35687aea838758505b7b1b8944efa0f4b1313298", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/CNRI-Python", "35687aea838758505b7b1b8944efa0f4b1313298", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -1674,10 +1770,10 @@ static SpdxLicenseList createList() .licenseId( "CPAL-1.0" ) .seeAlso( "https://opensource.org/licenses/CPAL-1.0" ) - .urlInfo( "http://opensource.org/licenses/CPAL-1.0", "e4f786bad66f01eb636d78985e132aa9064796c7", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/CPAL-1.0", "e4f786bad66f01eb636d78985e132aa9064796c7", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/CPAL-1.0", "e4f786bad66f01eb636d78985e132aa9064796c7", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/CPAL-1.0", "e4f786bad66f01eb636d78985e132aa9064796c7", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/CPAL-1.0", "55783ad397acffef2f88373534f669319f2c542b", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/CPAL-1.0", "55783ad397acffef2f88373534f669319f2c542b", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/CPAL-1.0", "55783ad397acffef2f88373534f669319f2c542b", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/CPAL-1.0", "55783ad397acffef2f88373534f669319f2c542b", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -1691,10 +1787,10 @@ static SpdxLicenseList createList() .licenseId( "CPL-1.0" ) .seeAlso( "https://opensource.org/licenses/CPL-1.0" ) - .urlInfo( "http://opensource.org/licenses/CPL-1.0", "c147fe0cdc6b4cb495ab5e83c674361dff4caf6f", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/CPL-1.0", "c147fe0cdc6b4cb495ab5e83c674361dff4caf6f", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/CPL-1.0", "c147fe0cdc6b4cb495ab5e83c674361dff4caf6f", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/CPL-1.0", "c147fe0cdc6b4cb495ab5e83c674361dff4caf6f", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/CPL-1.0", "8a873c13bfa2848f82a9161aee2f63ea4a667799", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/CPL-1.0", "8a873c13bfa2848f82a9161aee2f63ea4a667799", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/CPL-1.0", "8a873c13bfa2848f82a9161aee2f63ea4a667799", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/CPL-1.0", "8a873c13bfa2848f82a9161aee2f63ea4a667799", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -1720,10 +1816,10 @@ static SpdxLicenseList createList() .licenseId( "CUA-OPL-1.0" ) .seeAlso( "https://opensource.org/licenses/CUA-OPL-1.0" ) - .urlInfo( "http://opensource.org/licenses/CUA-OPL-1.0", "7977f16a637ed5e9babcaf12c8ac435eea01dba1", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/CUA-OPL-1.0", "7977f16a637ed5e9babcaf12c8ac435eea01dba1", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/CUA-OPL-1.0", "7977f16a637ed5e9babcaf12c8ac435eea01dba1", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/CUA-OPL-1.0", "7977f16a637ed5e9babcaf12c8ac435eea01dba1", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/CUA-OPL-1.0", "f74b77618705e3081b04500f34a2ad046efb6554", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/CUA-OPL-1.0", "f74b77618705e3081b04500f34a2ad046efb6554", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/CUA-OPL-1.0", "f74b77618705e3081b04500f34a2ad046efb6554", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/CUA-OPL-1.0", "f74b77618705e3081b04500f34a2ad046efb6554", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -1785,10 +1881,10 @@ static SpdxLicenseList createList() .licenseId( "Crossword" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Crossword" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Crossword", "dc59482efae3ef61e7f792f06de3857c27ae62df", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Crossword", "dc59482efae3ef61e7f792f06de3857c27ae62df", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Crossword", "dc59482efae3ef61e7f792f06de3857c27ae62df", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Crossword", "dc59482efae3ef61e7f792f06de3857c27ae62df", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Crossword", "dca84c1772142dac70966243518b1c7be48f6fe6", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Crossword", "dca84c1772142dac70966243518b1c7be48f6fe6", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Crossword", "dca84c1772142dac70966243518b1c7be48f6fe6", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Crossword", "dca84c1772142dac70966243518b1c7be48f6fe6", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1801,7 +1897,10 @@ static SpdxLicenseList createList() .licenseId( "CrystalStacker" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker" ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker", null, null, false, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker", "35336ec539fe0a1ce6e050f62dcaf4dbf9b9c381", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker", "35336ec539fe0a1ce6e050f62dcaf4dbf9b9c381", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker", "35336ec539fe0a1ce6e050f62dcaf4dbf9b9c381", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker", "35336ec539fe0a1ce6e050f62dcaf4dbf9b9c381", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1814,10 +1913,10 @@ static SpdxLicenseList createList() .licenseId( "Cube" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Cube" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Cube", "70240442576850126bed57fb6809dd9bccf8da7b", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Cube", "70240442576850126bed57fb6809dd9bccf8da7b", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Cube", "70240442576850126bed57fb6809dd9bccf8da7b", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Cube", "70240442576850126bed57fb6809dd9bccf8da7b", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Cube", "8624af85fc9a43bb2e4096f5049e4cd11b03fc3c", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Cube", "8624af85fc9a43bb2e4096f5049e4cd11b03fc3c", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Cube", "8624af85fc9a43bb2e4096f5049e4cd11b03fc3c", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Cube", "8624af85fc9a43bb2e4096f5049e4cd11b03fc3c", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1878,10 +1977,10 @@ static SpdxLicenseList createList() .licenseId( "DSDP" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/DSDP" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/DSDP", "223224dd5de195ba9857063515c42a4275bec847", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/DSDP", "223224dd5de195ba9857063515c42a4275bec847", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/DSDP", "223224dd5de195ba9857063515c42a4275bec847", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/DSDP", "223224dd5de195ba9857063515c42a4275bec847", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/DSDP", "1a57976934ec53669f9159b8b3fd753ffec072b5", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/DSDP", "1a57976934ec53669f9159b8b3fd753ffec072b5", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/DSDP", "1a57976934ec53669f9159b8b3fd753ffec072b5", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/DSDP", "1a57976934ec53669f9159b8b3fd753ffec072b5", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1894,10 +1993,10 @@ static SpdxLicenseList createList() .licenseId( "Dotseqn" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Dotseqn" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Dotseqn", "c4ccbecb94aa8df8b98f141548474f6be84b9815", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Dotseqn", "c4ccbecb94aa8df8b98f141548474f6be84b9815", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Dotseqn", "c4ccbecb94aa8df8b98f141548474f6be84b9815", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Dotseqn", "c4ccbecb94aa8df8b98f141548474f6be84b9815", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Dotseqn", "78273d480140c6c3b631e44ed444bdd85c69162a", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Dotseqn", "78273d480140c6c3b631e44ed444bdd85c69162a", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Dotseqn", "78273d480140c6c3b631e44ed444bdd85c69162a", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Dotseqn", "78273d480140c6c3b631e44ed444bdd85c69162a", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -1910,10 +2009,10 @@ static SpdxLicenseList createList() .licenseId( "ECL-1.0" ) .seeAlso( "https://opensource.org/licenses/ECL-1.0" ) - .urlInfo( "http://opensource.org/licenses/ECL-1.0", "6148ea974877d4322ee9edae2131615333aa0530", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/ECL-1.0", "6148ea974877d4322ee9edae2131615333aa0530", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/ECL-1.0", "6148ea974877d4322ee9edae2131615333aa0530", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/ECL-1.0", "6148ea974877d4322ee9edae2131615333aa0530", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/ECL-1.0", "756d4f76316b94432bec61f253c229c79e1f0bed", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/ECL-1.0", "756d4f76316b94432bec61f253c229c79e1f0bed", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/ECL-1.0", "756d4f76316b94432bec61f253c229c79e1f0bed", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/ECL-1.0", "756d4f76316b94432bec61f253c229c79e1f0bed", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -1927,10 +2026,10 @@ static SpdxLicenseList createList() .licenseId( "ECL-2.0" ) .seeAlso( "https://opensource.org/licenses/ECL-2.0" ) - .urlInfo( "http://opensource.org/licenses/ECL-2.0", "40e63550f1d779e500c50a39b5825a0537f56914", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/ECL-2.0", "40e63550f1d779e500c50a39b5825a0537f56914", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/ECL-2.0", "40e63550f1d779e500c50a39b5825a0537f56914", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/ECL-2.0", "40e63550f1d779e500c50a39b5825a0537f56914", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/ECL-2.0", "423315e17ae0141c404a9400d8bb996940f1ca56", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/ECL-2.0", "423315e17ae0141c404a9400d8bb996940f1ca56", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/ECL-2.0", "423315e17ae0141c404a9400d8bb996940f1ca56", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/ECL-2.0", "423315e17ae0141c404a9400d8bb996940f1ca56", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -1946,10 +2045,10 @@ static SpdxLicenseList createList() .urlInfo( "http://eiffel-nice.org/license/forum.txt", "0187bf4669b68a88a606fcc56026d42f6130a3b5", "text/plain", true, false ) .urlInfo( "http://www.eiffel-nice.org/license/forum.txt", "0187bf4669b68a88a606fcc56026d42f6130a3b5", "text/plain", true, false ) - .urlInfo( "http://opensource.org/licenses/EFL-1.0", "a4ae96d53f591e1dec33d93bb9ff483a6285bfec", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/EFL-1.0", "a4ae96d53f591e1dec33d93bb9ff483a6285bfec", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/EFL-1.0", "a4ae96d53f591e1dec33d93bb9ff483a6285bfec", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/EFL-1.0", "a4ae96d53f591e1dec33d93bb9ff483a6285bfec", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/EFL-1.0", "aa8f11ea9d769a219fdd28e97c798887cc646217", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/EFL-1.0", "aa8f11ea9d769a219fdd28e97c798887cc646217", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/EFL-1.0", "aa8f11ea9d769a219fdd28e97c798887cc646217", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/EFL-1.0", "aa8f11ea9d769a219fdd28e97c798887cc646217", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -1966,10 +2065,10 @@ static SpdxLicenseList createList() .urlInfo( "http://eiffel-nice.org/license/eiffel-forum-license-2.html", "11a3b6c48679ec916eee3ffbd2378355738cfc46", "text/html", true, false ) .urlInfo( "http://www.eiffel-nice.org/license/eiffel-forum-license-2.html", "11a3b6c48679ec916eee3ffbd2378355738cfc46", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/EFL-2.0", "277cf137b876b8f36be0c69443a735bdfdf1934f", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/EFL-2.0", "277cf137b876b8f36be0c69443a735bdfdf1934f", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/EFL-2.0", "277cf137b876b8f36be0c69443a735bdfdf1934f", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/EFL-2.0", "277cf137b876b8f36be0c69443a735bdfdf1934f", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/EFL-2.0", "c450a027fbe94e77932301d11a0bf8013372551b", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/EFL-2.0", "c450a027fbe94e77932301d11a0bf8013372551b", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/EFL-2.0", "c450a027fbe94e77932301d11a0bf8013372551b", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/EFL-2.0", "c450a027fbe94e77932301d11a0bf8013372551b", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -1988,10 +2087,10 @@ static SpdxLicenseList createList() .urlInfo( "http://www.eclipse.org/legal/epl-v10.html", "35666c54f2406125707e63edab12f2914d85ca76", "text/html", true, false ) .urlInfo( "https://eclipse.org/legal/epl-v10.html", "35666c54f2406125707e63edab12f2914d85ca76", "text/html", true, false ) .urlInfo( "https://www.eclipse.org/legal/epl-v10.html", "35666c54f2406125707e63edab12f2914d85ca76", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/EPL-1.0", "02e14182e62c3c8401c925fdc8031a1ff60744dc", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/EPL-1.0", "02e14182e62c3c8401c925fdc8031a1ff60744dc", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/EPL-1.0", "02e14182e62c3c8401c925fdc8031a1ff60744dc", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/EPL-1.0", "02e14182e62c3c8401c925fdc8031a1ff60744dc", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/EPL-1.0", "9a1b3f8639976267d5bf4da33be618fd572a2771", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/EPL-1.0", "9a1b3f8639976267d5bf4da33be618fd572a2771", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/EPL-1.0", "9a1b3f8639976267d5bf4da33be618fd572a2771", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/EPL-1.0", "9a1b3f8639976267d5bf4da33be618fd572a2771", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -2006,12 +2105,12 @@ static SpdxLicenseList createList() .seeAlso( "https://www.eclipse.org/legal/epl-2.0" ) .seeAlso( "https://www.opensource.org/licenses/EPL-2.0" ) - .urlInfo( "https://eclipse.org/legal/epl-2.0", "efb60bb2810e8e8a15d0d721e7dc06cf6aab195b", "text/html", true, false ) - .urlInfo( "https://www.eclipse.org/legal/epl-2.0", "efb60bb2810e8e8a15d0d721e7dc06cf6aab195b", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/EPL-2.0", "4dbcd9610d04e2b3d4ecee55e8c558ef463639a0", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/EPL-2.0", "4dbcd9610d04e2b3d4ecee55e8c558ef463639a0", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/EPL-2.0", "4dbcd9610d04e2b3d4ecee55e8c558ef463639a0", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/EPL-2.0", "4dbcd9610d04e2b3d4ecee55e8c558ef463639a0", "text/html", true, true ) + .urlInfo( "https://eclipse.org/legal/epl-2.0", "a197dfd57211db1b0f035a87e4c5b5c9e459cfec", "text/html", true, false ) + .urlInfo( "https://www.eclipse.org/legal/epl-2.0", "a197dfd57211db1b0f035a87e4c5b5c9e459cfec", "text/html", true, false ) + .urlInfo( "http://opensource.org/licenses/EPL-2.0", "fc5019e6631d9a8e913dccee572b11c8ac4f4404", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/EPL-2.0", "fc5019e6631d9a8e913dccee572b11c8ac4f4404", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/EPL-2.0", "fc5019e6631d9a8e913dccee572b11c8ac4f4404", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/EPL-2.0", "fc5019e6631d9a8e913dccee572b11c8ac4f4404", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -2026,11 +2125,12 @@ static SpdxLicenseList createList() .seeAlso( "http://eu-datagrid.web.cern.ch/eu-datagrid/license.html" ) .seeAlso( "https://opensource.org/licenses/EUDatagrid" ) - .urlInfo( "http://eu-datagrid.web.cern.ch/eu-datagrid/license.html", null, null, false, true ) - .urlInfo( "http://opensource.org/licenses/EUDatagrid", "97807431010e47b2bf903a3f73788a8caccab80c", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/EUDatagrid", "97807431010e47b2bf903a3f73788a8caccab80c", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/EUDatagrid", "97807431010e47b2bf903a3f73788a8caccab80c", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/EUDatagrid", "97807431010e47b2bf903a3f73788a8caccab80c", "text/html", true, true ) + .urlInfo( "http://eu-datagrid.web.cern.ch/eu-datagrid/license.html", "9ecab31e2f1f0e909e262d933486bef5066ca386", "text/html", true, true ) + .urlInfo( "https://eu-datagrid.web.cern.ch/eu-datagrid/license.html", "9ecab31e2f1f0e909e262d933486bef5066ca386", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/EUDatagrid", "b530e1a24462b7256bcc6e08f92e504afd23f0fd", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/EUDatagrid", "b530e1a24462b7256bcc6e08f92e504afd23f0fd", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/EUDatagrid", "b530e1a24462b7256bcc6e08f92e504afd23f0fd", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/EUDatagrid", "b530e1a24462b7256bcc6e08f92e504afd23f0fd", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -2063,16 +2163,16 @@ static SpdxLicenseList createList() .seeAlso( "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl1.1.-licence-en_0.pdf" ) .seeAlso( "https://opensource.org/licenses/EUPL-1.1" ) - .urlInfo( "http://joinup.ec.europa.eu/page/eupl-text-11-12", "8cdb0df63c1839b085d10d3a155e1eb4920af79f", "text/html", true, false ) - .urlInfo( "http://joinup.ec.europa.eu/software/page/eupl/licence-eupl", "8cdb0df63c1839b085d10d3a155e1eb4920af79f", "text/html", true, false ) - .urlInfo( "https://joinup.ec.europa.eu/page/eupl-text-11-12", "8cdb0df63c1839b085d10d3a155e1eb4920af79f", "text/html", true, false ) - .urlInfo( "https://joinup.ec.europa.eu/software/page/eupl/licence-eupl", "8cdb0df63c1839b085d10d3a155e1eb4920af79f", "text/html", true, false ) + .urlInfo( "http://joinup.ec.europa.eu/page/eupl-text-11-12", "7121a05d5b7059a019e008a85e1568b1c6f707de", "text/html", true, false ) + .urlInfo( "http://joinup.ec.europa.eu/software/page/eupl/licence-eupl", "7121a05d5b7059a019e008a85e1568b1c6f707de", "text/html", true, false ) + .urlInfo( "https://joinup.ec.europa.eu/page/eupl-text-11-12", "7121a05d5b7059a019e008a85e1568b1c6f707de", "text/html", true, false ) + .urlInfo( "https://joinup.ec.europa.eu/software/page/eupl/licence-eupl", "7121a05d5b7059a019e008a85e1568b1c6f707de", "text/html", true, false ) .urlInfo( "http://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl1.1.-licence-en_0.pdf", "b91481f1edd91d5fca56ccf4065b63c3269ac6fb", "application/pdf", true, false ) .urlInfo( "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl1.1.-licence-en_0.pdf", "b91481f1edd91d5fca56ccf4065b63c3269ac6fb", "application/pdf", true, false ) - .urlInfo( "http://opensource.org/licenses/EUPL-1.1", "e711c0fee9d5371dc184b19cd032572d86b607d8", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/EUPL-1.1", "e711c0fee9d5371dc184b19cd032572d86b607d8", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/EUPL-1.1", "e711c0fee9d5371dc184b19cd032572d86b607d8", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/EUPL-1.1", "e711c0fee9d5371dc184b19cd032572d86b607d8", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/EUPL-1.1", "a4f2685aac64b4442e5e2a22a2a8ce6ab638262e", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/EUPL-1.1", "a4f2685aac64b4442e5e2a22a2a8ce6ab638262e", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/EUPL-1.1", "a4f2685aac64b4442e5e2a22a2a8ce6ab638262e", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/EUPL-1.1", "a4f2685aac64b4442e5e2a22a2a8ce6ab638262e", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -2090,10 +2190,10 @@ static SpdxLicenseList createList() .seeAlso( "http://eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri=CELEX:32017D0863" ) .seeAlso( "https://opensource.org/licenses/EUPL-1.1" ) - .urlInfo( "http://joinup.ec.europa.eu/page/eupl-text-11-12", "8cdb0df63c1839b085d10d3a155e1eb4920af79f", "text/html", true, false ) - .urlInfo( "http://joinup.ec.europa.eu/software/page/eupl/licence-eupl", "8cdb0df63c1839b085d10d3a155e1eb4920af79f", "text/html", true, false ) - .urlInfo( "https://joinup.ec.europa.eu/page/eupl-text-11-12", "8cdb0df63c1839b085d10d3a155e1eb4920af79f", "text/html", true, false ) - .urlInfo( "https://joinup.ec.europa.eu/software/page/eupl/licence-eupl", "8cdb0df63c1839b085d10d3a155e1eb4920af79f", "text/html", true, false ) + .urlInfo( "http://joinup.ec.europa.eu/page/eupl-text-11-12", "7121a05d5b7059a019e008a85e1568b1c6f707de", "text/html", true, false ) + .urlInfo( "http://joinup.ec.europa.eu/software/page/eupl/licence-eupl", "7121a05d5b7059a019e008a85e1568b1c6f707de", "text/html", true, false ) + .urlInfo( "https://joinup.ec.europa.eu/page/eupl-text-11-12", "7121a05d5b7059a019e008a85e1568b1c6f707de", "text/html", true, false ) + .urlInfo( "https://joinup.ec.europa.eu/software/page/eupl/licence-eupl", "7121a05d5b7059a019e008a85e1568b1c6f707de", "text/html", true, false ) .urlInfo( "http://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl_v1.2_en.pdf", "e512a96949c79498ad1a59d6553ddf694ef44666", "application/pdf", true, false ) .urlInfo( "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl_v1.2_en.pdf", "e512a96949c79498ad1a59d6553ddf694ef44666", "application/pdf", true, false ) .urlInfo( "http://joinup.ec.europa.eu/sites/default/files/inline-files/EUPL%20v1_2%20EN(1).txt", "0ecda5d95dd354eaad18d0e72f6560e70fc78f74", "text/plain", true, false ) @@ -2101,10 +2201,10 @@ static SpdxLicenseList createList() .urlInfo( "http://eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri=CELEX:32017D0863", "56d6faabaf70c78c28c825bf74fb82aaa82972ba", "text/html", true, false ) .urlInfo( "http://www.eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri=CELEX:32017D0863", "56d6faabaf70c78c28c825bf74fb82aaa82972ba", "text/html", true, false ) .urlInfo( "https://eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri=CELEX:32017D0863", "56d6faabaf70c78c28c825bf74fb82aaa82972ba", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/EUPL-1.1", "e711c0fee9d5371dc184b19cd032572d86b607d8", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/EUPL-1.1", "e711c0fee9d5371dc184b19cd032572d86b607d8", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/EUPL-1.1", "e711c0fee9d5371dc184b19cd032572d86b607d8", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/EUPL-1.1", "e711c0fee9d5371dc184b19cd032572d86b607d8", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/EUPL-1.1", "a4f2685aac64b4442e5e2a22a2a8ce6ab638262e", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/EUPL-1.1", "a4f2685aac64b4442e5e2a22a2a8ce6ab638262e", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/EUPL-1.1", "a4f2685aac64b4442e5e2a22a2a8ce6ab638262e", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/EUPL-1.1", "a4f2685aac64b4442e5e2a22a2a8ce6ab638262e", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -2117,10 +2217,10 @@ static SpdxLicenseList createList() .licenseId( "Entessa" ) .seeAlso( "https://opensource.org/licenses/Entessa" ) - .urlInfo( "http://opensource.org/licenses/Entessa", "71523301fdc944d030298a7f16b84dbb44d9ed40", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/Entessa", "71523301fdc944d030298a7f16b84dbb44d9ed40", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/Entessa", "71523301fdc944d030298a7f16b84dbb44d9ed40", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/Entessa", "71523301fdc944d030298a7f16b84dbb44d9ed40", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/Entessa", "e0983f23de64af5f557bc25607b292e0de15e1d8", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/Entessa", "e0983f23de64af5f557bc25607b292e0de15e1d8", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/Entessa", "e0983f23de64af5f557bc25607b292e0de15e1d8", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/Entessa", "e0983f23de64af5f557bc25607b292e0de15e1d8", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -2148,7 +2248,10 @@ static SpdxLicenseList createList() .licenseId( "Eurosym" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Eurosym" ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Eurosym", null, null, false, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Eurosym", "27605ac5de8d1c17474be6a466ee6ecaaa2cd7a5", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Eurosym", "27605ac5de8d1c17474be6a466ee6ecaaa2cd7a5", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Eurosym", "27605ac5de8d1c17474be6a466ee6ecaaa2cd7a5", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Eurosym", "27605ac5de8d1c17474be6a466ee6ecaaa2cd7a5", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -2178,14 +2281,14 @@ static SpdxLicenseList createList() .licenseId( "FSFUL" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License", "6d055bc50f88547e184af423a7a9998bc77a8b9f", "text/html", true, true ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant", "6d055bc50f88547e184af423a7a9998bc77a8b9f", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/FSF_Unlimited_License", "6d055bc50f88547e184af423a7a9998bc77a8b9f", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant", "6d055bc50f88547e184af423a7a9998bc77a8b9f", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License", "6d055bc50f88547e184af423a7a9998bc77a8b9f", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant", "6d055bc50f88547e184af423a7a9998bc77a8b9f", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/FSF_Unlimited_License", "6d055bc50f88547e184af423a7a9998bc77a8b9f", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant", "6d055bc50f88547e184af423a7a9998bc77a8b9f", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License", "92d6360f648278de21e329ae8bc5b9b8288c86c3", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant", "92d6360f648278de21e329ae8bc5b9b8288c86c3", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/FSF_Unlimited_License", "92d6360f648278de21e329ae8bc5b9b8288c86c3", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant", "92d6360f648278de21e329ae8bc5b9b8288c86c3", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License", "92d6360f648278de21e329ae8bc5b9b8288c86c3", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant", "92d6360f648278de21e329ae8bc5b9b8288c86c3", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/FSF_Unlimited_License", "92d6360f648278de21e329ae8bc5b9b8288c86c3", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant", "92d6360f648278de21e329ae8bc5b9b8288c86c3", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -2198,14 +2301,14 @@ static SpdxLicenseList createList() .licenseId( "FSFULLR" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License", "6d055bc50f88547e184af423a7a9998bc77a8b9f", "text/html", true, true ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant", "6d055bc50f88547e184af423a7a9998bc77a8b9f", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/FSF_Unlimited_License", "6d055bc50f88547e184af423a7a9998bc77a8b9f", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant", "6d055bc50f88547e184af423a7a9998bc77a8b9f", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License", "6d055bc50f88547e184af423a7a9998bc77a8b9f", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant", "6d055bc50f88547e184af423a7a9998bc77a8b9f", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/FSF_Unlimited_License", "6d055bc50f88547e184af423a7a9998bc77a8b9f", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant", "6d055bc50f88547e184af423a7a9998bc77a8b9f", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License", "92d6360f648278de21e329ae8bc5b9b8288c86c3", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant", "92d6360f648278de21e329ae8bc5b9b8288c86c3", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/FSF_Unlimited_License", "92d6360f648278de21e329ae8bc5b9b8288c86c3", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant", "92d6360f648278de21e329ae8bc5b9b8288c86c3", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License", "92d6360f648278de21e329ae8bc5b9b8288c86c3", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant", "92d6360f648278de21e329ae8bc5b9b8288c86c3", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/FSF_Unlimited_License", "92d6360f648278de21e329ae8bc5b9b8288c86c3", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant", "92d6360f648278de21e329ae8bc5b9b8288c86c3", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -2232,10 +2335,11 @@ static SpdxLicenseList createList() .seeAlso( "http://fairlicense.org/" ) .seeAlso( "https://opensource.org/licenses/Fair" ) - .urlInfo( "http://opensource.org/licenses/Fair", "eb770c68f5f2dbc7c8b5f0a09e8188e103746cae", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/Fair", "eb770c68f5f2dbc7c8b5f0a09e8188e103746cae", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/Fair", "eb770c68f5f2dbc7c8b5f0a09e8188e103746cae", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/Fair", "eb770c68f5f2dbc7c8b5f0a09e8188e103746cae", "text/html", true, true ) + .urlInfo( "http://fairlicense.org/", "f458d76f7b9e27fdf2d9e407c504f8142d6e1037", "text/html", true, false ) + .urlInfo( "http://opensource.org/licenses/Fair", "c2db99c6033406b81b84635a6af07ea7e1f5aa17", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/Fair", "c2db99c6033406b81b84635a6af07ea7e1f5aa17", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/Fair", "c2db99c6033406b81b84635a6af07ea7e1f5aa17", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/Fair", "c2db99c6033406b81b84635a6af07ea7e1f5aa17", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -2248,10 +2352,10 @@ static SpdxLicenseList createList() .licenseId( "Frameworx-1.0" ) .seeAlso( "https://opensource.org/licenses/Frameworx-1.0" ) - .urlInfo( "http://opensource.org/licenses/Frameworx-1.0", "6da34725b61fdd466f4286430a2ea091cae0639a", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/Frameworx-1.0", "6da34725b61fdd466f4286430a2ea091cae0639a", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/Frameworx-1.0", "6da34725b61fdd466f4286430a2ea091cae0639a", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/Frameworx-1.0", "6da34725b61fdd466f4286430a2ea091cae0639a", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/Frameworx-1.0", "4a1b6fe365763d63b5eb537c1de24145399222bd", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/Frameworx-1.0", "4a1b6fe365763d63b5eb537c1de24145399222bd", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/Frameworx-1.0", "4a1b6fe365763d63b5eb537c1de24145399222bd", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/Frameworx-1.0", "4a1b6fe365763d63b5eb537c1de24145399222bd", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -2451,6 +2555,14 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", "539d8420132db2bb3773ead4cd77f948eed57b7f", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", "539d8420132db2bb3773ead4cd77f948eed57b7f", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", "539d8420132db2bb3773ead4cd77f948eed57b7f", "text/html", true, false ) + .urlInfo( "http://fsf.org/licensing/licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/old-licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/old-licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/old-licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/old-licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) .isOsiApproved( false ) .build() ); @@ -2467,6 +2579,14 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", "539d8420132db2bb3773ead4cd77f948eed57b7f", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", "539d8420132db2bb3773ead4cd77f948eed57b7f", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", "539d8420132db2bb3773ead4cd77f948eed57b7f", "text/html", true, false ) + .urlInfo( "http://fsf.org/licensing/licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/old-licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/old-licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/old-licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/old-licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) .isOsiApproved( false ) .build() ); @@ -2483,6 +2603,14 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", "539d8420132db2bb3773ead4cd77f948eed57b7f", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", "539d8420132db2bb3773ead4cd77f948eed57b7f", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", "539d8420132db2bb3773ead4cd77f948eed57b7f", "text/html", true, false ) + .urlInfo( "http://fsf.org/licensing/licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/old-licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/old-licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/old-licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/old-licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) .isOsiApproved( false ) .build() ); @@ -2499,6 +2627,14 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", "539d8420132db2bb3773ead4cd77f948eed57b7f", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", "539d8420132db2bb3773ead4cd77f948eed57b7f", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", "539d8420132db2bb3773ead4cd77f948eed57b7f", "text/html", true, false ) + .urlInfo( "http://fsf.org/licensing/licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/old-licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/old-licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/old-licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/old-licenses/gpl-1.0.txt", "18eaf66587c5eea277721d5e569a6e3cd869f855", "text/plain", true, false ) .isOsiApproved( false ) .build() ); @@ -2517,10 +2653,18 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", "f4c15ee1715ae360eaac505fa32cb200565aad4b", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", "f4c15ee1715ae360eaac505fa32cb200565aad4b", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", "f4c15ee1715ae360eaac505fa32cb200565aad4b", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/GPL-2.0", "48b6db71b12c842a2016ddf4dc15470375e9bfe7", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/GPL-2.0", "48b6db71b12c842a2016ddf4dc15470375e9bfe7", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/GPL-2.0", "48b6db71b12c842a2016ddf4dc15470375e9bfe7", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/GPL-2.0", "48b6db71b12c842a2016ddf4dc15470375e9bfe7", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/GPL-2.0", "e42213d8b6a33520f82b0b1c38c3ada3c9ad064f", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/GPL-2.0", "e42213d8b6a33520f82b0b1c38c3ada3c9ad064f", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/GPL-2.0", "e42213d8b6a33520f82b0b1c38c3ada3c9ad064f", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/GPL-2.0", "e42213d8b6a33520f82b0b1c38c3ada3c9ad064f", "text/html", false, true ) + .urlInfo( "http://fsf.org/licensing/licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/old-licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/old-licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) .isOsiApproved( true ) .build() ); @@ -2539,10 +2683,18 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", "f4c15ee1715ae360eaac505fa32cb200565aad4b", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", "f4c15ee1715ae360eaac505fa32cb200565aad4b", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", "f4c15ee1715ae360eaac505fa32cb200565aad4b", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/GPL-2.0", "48b6db71b12c842a2016ddf4dc15470375e9bfe7", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/GPL-2.0", "48b6db71b12c842a2016ddf4dc15470375e9bfe7", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/GPL-2.0", "48b6db71b12c842a2016ddf4dc15470375e9bfe7", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/GPL-2.0", "48b6db71b12c842a2016ddf4dc15470375e9bfe7", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/GPL-2.0", "e42213d8b6a33520f82b0b1c38c3ada3c9ad064f", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/GPL-2.0", "e42213d8b6a33520f82b0b1c38c3ada3c9ad064f", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/GPL-2.0", "e42213d8b6a33520f82b0b1c38c3ada3c9ad064f", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/GPL-2.0", "e42213d8b6a33520f82b0b1c38c3ada3c9ad064f", "text/html", false, true ) + .urlInfo( "http://fsf.org/licensing/licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/old-licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/old-licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) .isOsiApproved( true ) .build() ); @@ -2561,10 +2713,18 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", "f4c15ee1715ae360eaac505fa32cb200565aad4b", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", "f4c15ee1715ae360eaac505fa32cb200565aad4b", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", "f4c15ee1715ae360eaac505fa32cb200565aad4b", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/GPL-2.0", "48b6db71b12c842a2016ddf4dc15470375e9bfe7", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/GPL-2.0", "48b6db71b12c842a2016ddf4dc15470375e9bfe7", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/GPL-2.0", "48b6db71b12c842a2016ddf4dc15470375e9bfe7", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/GPL-2.0", "48b6db71b12c842a2016ddf4dc15470375e9bfe7", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/GPL-2.0", "e42213d8b6a33520f82b0b1c38c3ada3c9ad064f", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/GPL-2.0", "e42213d8b6a33520f82b0b1c38c3ada3c9ad064f", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/GPL-2.0", "e42213d8b6a33520f82b0b1c38c3ada3c9ad064f", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/GPL-2.0", "e42213d8b6a33520f82b0b1c38c3ada3c9ad064f", "text/html", false, true ) + .urlInfo( "http://fsf.org/licensing/licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/old-licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/old-licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) .isOsiApproved( true ) .build() ); @@ -2583,10 +2743,18 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", "f4c15ee1715ae360eaac505fa32cb200565aad4b", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", "f4c15ee1715ae360eaac505fa32cb200565aad4b", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", "f4c15ee1715ae360eaac505fa32cb200565aad4b", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/GPL-2.0", "48b6db71b12c842a2016ddf4dc15470375e9bfe7", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/GPL-2.0", "48b6db71b12c842a2016ddf4dc15470375e9bfe7", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/GPL-2.0", "48b6db71b12c842a2016ddf4dc15470375e9bfe7", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/GPL-2.0", "48b6db71b12c842a2016ddf4dc15470375e9bfe7", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/GPL-2.0", "e42213d8b6a33520f82b0b1c38c3ada3c9ad064f", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/GPL-2.0", "e42213d8b6a33520f82b0b1c38c3ada3c9ad064f", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/GPL-2.0", "e42213d8b6a33520f82b0b1c38c3ada3c9ad064f", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/GPL-2.0", "e42213d8b6a33520f82b0b1c38c3ada3c9ad064f", "text/html", false, true ) + .urlInfo( "http://fsf.org/licensing/licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/old-licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/old-licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt", "4cc77b90af91e615a64ae04893fdffa7939db84c", "text/plain", true, false ) .isOsiApproved( true ) .build() ); @@ -2654,10 +2822,10 @@ static SpdxLicenseList createList() .licenseId( "GPL-2.0-with-font-exception" ) .seeAlso( "https://www.gnu.org/licenses/gpl-faq.html#FontException" ) - .urlInfo( "http://gnu.org/licenses/gpl-faq.html#FontException", "4d8be584567cb67fa37ce921e1d20964a28e25bd", "text/html", true, false ) - .urlInfo( "http://www.gnu.org/licenses/gpl-faq.html#FontException", "4d8be584567cb67fa37ce921e1d20964a28e25bd", "text/html", true, false ) - .urlInfo( "https://gnu.org/licenses/gpl-faq.html#FontException", "4d8be584567cb67fa37ce921e1d20964a28e25bd", "text/html", true, false ) - .urlInfo( "https://www.gnu.org/licenses/gpl-faq.html#FontException", "4d8be584567cb67fa37ce921e1d20964a28e25bd", "text/html", true, false ) + .urlInfo( "http://gnu.org/licenses/gpl-faq.html#FontException", "ca693f05e4340375bea8f86a0977cfd6232d8841", "text/html", true, false ) + .urlInfo( "http://www.gnu.org/licenses/gpl-faq.html#FontException", "ca693f05e4340375bea8f86a0977cfd6232d8841", "text/html", true, false ) + .urlInfo( "https://gnu.org/licenses/gpl-faq.html#FontException", "ca693f05e4340375bea8f86a0977cfd6232d8841", "text/html", true, false ) + .urlInfo( "https://www.gnu.org/licenses/gpl-faq.html#FontException", "ca693f05e4340375bea8f86a0977cfd6232d8841", "text/html", true, false ) .isOsiApproved( false ) .build() ); @@ -2676,10 +2844,18 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/gpl-3.0-standalone.html", "20c27b0c56d6f42af9917024ad1a12ccc66dde77", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/gpl-3.0-standalone.html", "20c27b0c56d6f42af9917024ad1a12ccc66dde77", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/gpl-3.0-standalone.html", "20c27b0c56d6f42af9917024ad1a12ccc66dde77", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/GPL-3.0", "66888ed9e008835d5a7cc2c47399705b98902a77", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/GPL-3.0", "66888ed9e008835d5a7cc2c47399705b98902a77", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/GPL-3.0", "66888ed9e008835d5a7cc2c47399705b98902a77", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/GPL-3.0", "66888ed9e008835d5a7cc2c47399705b98902a77", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/GPL-3.0", "7495048ef61372884b9904f9c5d9a70b15439bf8", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/GPL-3.0", "7495048ef61372884b9904f9c5d9a70b15439bf8", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/GPL-3.0", "7495048ef61372884b9904f9c5d9a70b15439bf8", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/GPL-3.0", "7495048ef61372884b9904f9c5d9a70b15439bf8", "text/html", false, true ) + .urlInfo( "http://fsf.org/licensing/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) .isOsiApproved( true ) .build() ); @@ -2698,10 +2874,18 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/gpl-3.0-standalone.html", "20c27b0c56d6f42af9917024ad1a12ccc66dde77", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/gpl-3.0-standalone.html", "20c27b0c56d6f42af9917024ad1a12ccc66dde77", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/gpl-3.0-standalone.html", "20c27b0c56d6f42af9917024ad1a12ccc66dde77", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/GPL-3.0", "66888ed9e008835d5a7cc2c47399705b98902a77", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/GPL-3.0", "66888ed9e008835d5a7cc2c47399705b98902a77", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/GPL-3.0", "66888ed9e008835d5a7cc2c47399705b98902a77", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/GPL-3.0", "66888ed9e008835d5a7cc2c47399705b98902a77", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/GPL-3.0", "7495048ef61372884b9904f9c5d9a70b15439bf8", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/GPL-3.0", "7495048ef61372884b9904f9c5d9a70b15439bf8", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/GPL-3.0", "7495048ef61372884b9904f9c5d9a70b15439bf8", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/GPL-3.0", "7495048ef61372884b9904f9c5d9a70b15439bf8", "text/html", false, true ) + .urlInfo( "http://fsf.org/licensing/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) .isOsiApproved( true ) .build() ); @@ -2720,10 +2904,18 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/gpl-3.0-standalone.html", "20c27b0c56d6f42af9917024ad1a12ccc66dde77", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/gpl-3.0-standalone.html", "20c27b0c56d6f42af9917024ad1a12ccc66dde77", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/gpl-3.0-standalone.html", "20c27b0c56d6f42af9917024ad1a12ccc66dde77", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/GPL-3.0", "66888ed9e008835d5a7cc2c47399705b98902a77", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/GPL-3.0", "66888ed9e008835d5a7cc2c47399705b98902a77", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/GPL-3.0", "66888ed9e008835d5a7cc2c47399705b98902a77", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/GPL-3.0", "66888ed9e008835d5a7cc2c47399705b98902a77", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/GPL-3.0", "7495048ef61372884b9904f9c5d9a70b15439bf8", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/GPL-3.0", "7495048ef61372884b9904f9c5d9a70b15439bf8", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/GPL-3.0", "7495048ef61372884b9904f9c5d9a70b15439bf8", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/GPL-3.0", "7495048ef61372884b9904f9c5d9a70b15439bf8", "text/html", false, true ) + .urlInfo( "http://fsf.org/licensing/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) .isOsiApproved( true ) .build() ); @@ -2742,10 +2934,18 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/gpl-3.0-standalone.html", "20c27b0c56d6f42af9917024ad1a12ccc66dde77", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/gpl-3.0-standalone.html", "20c27b0c56d6f42af9917024ad1a12ccc66dde77", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/gpl-3.0-standalone.html", "20c27b0c56d6f42af9917024ad1a12ccc66dde77", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/GPL-3.0", "66888ed9e008835d5a7cc2c47399705b98902a77", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/GPL-3.0", "66888ed9e008835d5a7cc2c47399705b98902a77", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/GPL-3.0", "66888ed9e008835d5a7cc2c47399705b98902a77", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/GPL-3.0", "66888ed9e008835d5a7cc2c47399705b98902a77", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/GPL-3.0", "7495048ef61372884b9904f9c5d9a70b15439bf8", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/GPL-3.0", "7495048ef61372884b9904f9c5d9a70b15439bf8", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/GPL-3.0", "7495048ef61372884b9904f9c5d9a70b15439bf8", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/GPL-3.0", "7495048ef61372884b9904f9c5d9a70b15439bf8", "text/html", false, true ) + .urlInfo( "http://fsf.org/licensing/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/gpl-3.0.txt", "31a3d460bb3c7d98845187c716a30db81c44b615", "text/plain", true, false ) .isOsiApproved( true ) .build() ); @@ -2790,9 +2990,9 @@ static SpdxLicenseList createList() .licenseId( "Giftware" ) .seeAlso( "http://liballeg.org/license.html#allegro-4-the-giftware-license" ) - .urlInfo( "http://liballeg.org/license.html#allegro-4-the-giftware-license", "792d58bca1685e39811d35b63e713337d4d3aeb1", "text/html", true, false ) - .urlInfo( "http://www.liballeg.org/license.html#allegro-4-the-giftware-license", "792d58bca1685e39811d35b63e713337d4d3aeb1", "text/html", true, false ) - .urlInfo( "https://liballeg.org/license.html#allegro-4-the-giftware-license", "792d58bca1685e39811d35b63e713337d4d3aeb1", "text/html", true, false ) + .urlInfo( "http://liballeg.org/license.html#allegro-4-the-giftware-license", "18be1027c26d30dfcb4e438e3d72a6923e5b3726", "text/html", true, false ) + .urlInfo( "http://www.liballeg.org/license.html#allegro-4-the-giftware-license", "18be1027c26d30dfcb4e438e3d72a6923e5b3726", "text/html", true, false ) + .urlInfo( "https://liballeg.org/license.html#allegro-4-the-giftware-license", "18be1027c26d30dfcb4e438e3d72a6923e5b3726", "text/html", true, false ) .isOsiApproved( false ) .build() ); @@ -2804,8 +3004,6 @@ static SpdxLicenseList createList() .name( "3dfx Glide License" ) .licenseId( "Glide" ) .seeAlso( "http://www.users.on.net/~triforce/glidexp/COPYING.txt" ) - - .urlInfo( "http://www.users.on.net/~triforce/glidexp/COPYING.txt", null, null, false, true ) .isOsiApproved( false ) .build() ); @@ -2818,10 +3016,8 @@ static SpdxLicenseList createList() .licenseId( "Glulxe" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Glulxe" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Glulxe", "eeec1064abebcdc39049f1c56e58976d47b3b920", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Glulxe", "eeec1064abebcdc39049f1c56e58976d47b3b920", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Glulxe", "eeec1064abebcdc39049f1c56e58976d47b3b920", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Glulxe", "eeec1064abebcdc39049f1c56e58976d47b3b920", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Glulxe", "600d85936d36afb8036d6679cd6ff0b6cd866897", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Glulxe", "600d85936d36afb8036d6679cd6ff0b6cd866897", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -2835,10 +3031,10 @@ static SpdxLicenseList createList() .licenseId( "HPND" ) .seeAlso( "https://opensource.org/licenses/HPND" ) - .urlInfo( "http://opensource.org/licenses/HPND", "937727034105423dc73080378a7ba72094e32e80", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/HPND", "937727034105423dc73080378a7ba72094e32e80", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/HPND", "937727034105423dc73080378a7ba72094e32e80", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/HPND", "937727034105423dc73080378a7ba72094e32e80", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/HPND", "6a2cd3da04b29962721bd04032669cd99654723e", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/HPND", "6a2cd3da04b29962721bd04032669cd99654723e", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/HPND", "6a2cd3da04b29962721bd04032669cd99654723e", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/HPND", "6a2cd3da04b29962721bd04032669cd99654723e", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -2862,10 +3058,8 @@ static SpdxLicenseList createList() .licenseId( "HaskellReport" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License", "4c399c3095e215945a1237618df134151eedbd8f", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License", "4c399c3095e215945a1237618df134151eedbd8f", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License", "4c399c3095e215945a1237618df134151eedbd8f", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License", "4c399c3095e215945a1237618df134151eedbd8f", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License", "2143a9ff2a144a2b1e5f05cd2db753701b17aeb3", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License", "2143a9ff2a144a2b1e5f05cd2db753701b17aeb3", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -2877,6 +3071,9 @@ static SpdxLicenseList createList() .name( "IBM PowerPC Initialization and Boot Software" ) .licenseId( "IBM-pibs" ) .seeAlso( "http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d" ) + + .urlInfo( "http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d", "5fb6ed7cf5e7c925eb5f262b29acd6aefaf925fb", "text/html", true, false ) + .urlInfo( "https://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d", "5fb6ed7cf5e7c925eb5f262b29acd6aefaf925fb", "text/html", true, false ) .isOsiApproved( false ) .build() ); @@ -2901,8 +3098,8 @@ static SpdxLicenseList createList() .licenseId( "IJG" ) .seeAlso( "http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2" ) - .urlInfo( "http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2", "d4917567d29c59fe65b1a394d3504c2504ebcc33", "text/html", true, false ) - .urlInfo( "https://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2", "d4917567d29c59fe65b1a394d3504c2504ebcc33", "text/html", true, false ) + .urlInfo( "http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2", "8501b4b302c4c2f6f67f82159b8e7c2388227e93", "text/html", true, false ) + .urlInfo( "https://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2", "8501b4b302c4c2f6f67f82159b8e7c2388227e93", "text/html", true, false ) .isOsiApproved( false ) .build() ); @@ -2916,10 +3113,10 @@ static SpdxLicenseList createList() .licenseId( "IPA" ) .seeAlso( "https://opensource.org/licenses/IPA" ) - .urlInfo( "http://opensource.org/licenses/IPA", "6ed58b7ff312f41b2a06296a2b0bcf3df7a9ffc6", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/IPA", "6ed58b7ff312f41b2a06296a2b0bcf3df7a9ffc6", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/IPA", "6ed58b7ff312f41b2a06296a2b0bcf3df7a9ffc6", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/IPA", "6ed58b7ff312f41b2a06296a2b0bcf3df7a9ffc6", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/IPA", "c3c56e9482ac217c0898881a7eb2f41cd6e59449", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/IPA", "c3c56e9482ac217c0898881a7eb2f41cd6e59449", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/IPA", "c3c56e9482ac217c0898881a7eb2f41cd6e59449", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/IPA", "c3c56e9482ac217c0898881a7eb2f41cd6e59449", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -2933,10 +3130,10 @@ static SpdxLicenseList createList() .licenseId( "IPL-1.0" ) .seeAlso( "https://opensource.org/licenses/IPL-1.0" ) - .urlInfo( "http://opensource.org/licenses/IPL-1.0", "8eb10e919235c04b6d2a20dc16c3294845a75606", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/IPL-1.0", "8eb10e919235c04b6d2a20dc16c3294845a75606", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/IPL-1.0", "8eb10e919235c04b6d2a20dc16c3294845a75606", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/IPL-1.0", "8eb10e919235c04b6d2a20dc16c3294845a75606", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/IPL-1.0", "c45cea256e89c3f37e029d04b9a973719c17c536", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/IPL-1.0", "c45cea256e89c3f37e029d04b9a973719c17c536", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/IPL-1.0", "c45cea256e89c3f37e029d04b9a973719c17c536", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/IPL-1.0", "c45cea256e89c3f37e029d04b9a973719c17c536", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -2951,12 +3148,12 @@ static SpdxLicenseList createList() .seeAlso( "https://www.isc.org/downloads/software-support-policy/isc-license/" ) .seeAlso( "https://opensource.org/licenses/ISC" ) - .urlInfo( "https://isc.org/downloads/software-support-policy/isc-license/", "90e164c10cfabdd0cdcf03f9a776ce9b695a0c20", "text/html", true, false ) - .urlInfo( "https://www.isc.org/downloads/software-support-policy/isc-license/", "90e164c10cfabdd0cdcf03f9a776ce9b695a0c20", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/ISC", "f16f8ead2c5758c44c9972ff4d63467165a238b9", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/ISC", "f16f8ead2c5758c44c9972ff4d63467165a238b9", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/ISC", "f16f8ead2c5758c44c9972ff4d63467165a238b9", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/ISC", "f16f8ead2c5758c44c9972ff4d63467165a238b9", "text/html", true, true ) + .urlInfo( "https://isc.org/downloads/software-support-policy/isc-license/", "0ed942cb7331f4396a838bac42ff13ca72cf568c", "text/html", true, false ) + .urlInfo( "https://www.isc.org/downloads/software-support-policy/isc-license/", "0ed942cb7331f4396a838bac42ff13ca72cf568c", "text/html", true, false ) + .urlInfo( "http://opensource.org/licenses/ISC", "6cd8a2cb39eb7f9f27fc68870341ba32c01d58d4", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/ISC", "6cd8a2cb39eb7f9f27fc68870341ba32c01d58d4", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/ISC", "6cd8a2cb39eb7f9f27fc68870341ba32c01d58d4", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/ISC", "6cd8a2cb39eb7f9f27fc68870341ba32c01d58d4", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -2969,8 +3166,10 @@ static SpdxLicenseList createList() .licenseId( "ImageMagick" ) .seeAlso( "http://www.imagemagick.org/script/license.php" ) - .urlInfo( "http://www.imagemagick.org/script/license.php", "8cda9d88a5bc1d40cfc51ddf66b7f162747718d8", "text/html", true, false ) - .urlInfo( "https://www.imagemagick.org/script/license.php", "8cda9d88a5bc1d40cfc51ddf66b7f162747718d8", "text/html", true, false ) + .urlInfo( "http://imagemagick.org/script/license.php", "af2eee0fc029843aa9886ed7cc299416cd38bfcc", "text/html", true, false ) + .urlInfo( "http://www.imagemagick.org/script/license.php", "af2eee0fc029843aa9886ed7cc299416cd38bfcc", "text/html", true, false ) + .urlInfo( "https://imagemagick.org/script/license.php", "af2eee0fc029843aa9886ed7cc299416cd38bfcc", "text/html", true, false ) + .urlInfo( "https://www.imagemagick.org/script/license.php", "af2eee0fc029843aa9886ed7cc299416cd38bfcc", "text/html", true, false ) .isOsiApproved( false ) .build() ); @@ -3014,10 +3213,10 @@ static SpdxLicenseList createList() .licenseId( "Intel" ) .seeAlso( "https://opensource.org/licenses/Intel" ) - .urlInfo( "http://opensource.org/licenses/Intel", "2e6c6b4d87a7171ed998639a21cbcec47dec76ad", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/Intel", "2e6c6b4d87a7171ed998639a21cbcec47dec76ad", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/Intel", "2e6c6b4d87a7171ed998639a21cbcec47dec76ad", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/Intel", "2e6c6b4d87a7171ed998639a21cbcec47dec76ad", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/Intel", "8869c958cebbb1314ccf8d9e3ef5e8b1a3ae6046", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/Intel", "8869c958cebbb1314ccf8d9e3ef5e8b1a3ae6046", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/Intel", "8869c958cebbb1314ccf8d9e3ef5e8b1a3ae6046", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/Intel", "8869c958cebbb1314ccf8d9e3ef5e8b1a3ae6046", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -3030,10 +3229,7 @@ static SpdxLicenseList createList() .licenseId( "Intel-ACPI" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement", "d789f76b8fd4c3b4f778c4566ca0c0971ddb6147", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement", "d789f76b8fd4c3b4f778c4566ca0c0971ddb6147", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement", "d789f76b8fd4c3b4f778c4566ca0c0971ddb6147", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement", "d789f76b8fd4c3b4f778c4566ca0c0971ddb6147", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement", null, null, false, true ) .isOsiApproved( false ) .build() ); @@ -3049,6 +3245,19 @@ static SpdxLicenseList createList() .build() ); + builder.license( SpdxLicenseInfo.builder() + .reference( "./JPNIC.html" ) + .isDeprecatedLicenseId( false ) + .detailsUrl( "http://spdx.org/licenses/JPNIC.json" ) + .name( "Japan Network Information Center License" ) + .licenseId( "JPNIC" ) + .seeAlso( "https://gitlab.isc.org/isc-projects/bind9/blob/master/COPYRIGHT#L366" ) + + .urlInfo( "https://gitlab.isc.org/isc-projects/bind9/blob/master/COPYRIGHT#L366", null, null, false, false ) + .isOsiApproved( false ) + .build() + ); + builder.license( SpdxLicenseInfo.builder() .reference( "./JSON.html" ) .isDeprecatedLicenseId( false ) @@ -3089,7 +3298,8 @@ static SpdxLicenseList createList() .licenseId( "LAL-1.2" ) .seeAlso( "http://artlibre.org/licence/lal/licence-art-libre-12/" ) - .urlInfo( "http://artlibre.org/licence/lal/licence-art-libre-12/", null, null, false, true ) + .urlInfo( "http://artlibre.org/licence/lal/licence-art-libre-12/", "df23d3e0f1fca6107f079efe462314636f5c2641", "text/html", true, true ) + .urlInfo( "http://www.artlibre.org/licence/lal/licence-art-libre-12/", "df23d3e0f1fca6107f079efe462314636f5c2641", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -3102,7 +3312,8 @@ static SpdxLicenseList createList() .licenseId( "LAL-1.3" ) .seeAlso( "http://artlibre.org/" ) - .urlInfo( "http://artlibre.org/", null, null, false, true ) + .urlInfo( "http://artlibre.org/", "ccb30a10a3d0eae7a668ae6e711c55d000f6d7b3", "text/html", true, true ) + .urlInfo( "http://www.artlibre.org/", "ccb30a10a3d0eae7a668ae6e711c55d000f6d7b3", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -3119,6 +3330,14 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html", "914d8333aaf7cdc7937142f1bb66972a98c2604b", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html", "914d8333aaf7cdc7937142f1bb66972a98c2604b", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html", "914d8333aaf7cdc7937142f1bb66972a98c2604b", "text/html", true, false ) + .urlInfo( "http://fsf.org/licensing/licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/old-licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/old-licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) .isOsiApproved( true ) .build() ); @@ -3135,6 +3354,14 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html", "914d8333aaf7cdc7937142f1bb66972a98c2604b", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html", "914d8333aaf7cdc7937142f1bb66972a98c2604b", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html", "914d8333aaf7cdc7937142f1bb66972a98c2604b", "text/html", true, false ) + .urlInfo( "http://fsf.org/licensing/licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/old-licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/old-licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) .isOsiApproved( true ) .build() ); @@ -3151,6 +3378,14 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html", "914d8333aaf7cdc7937142f1bb66972a98c2604b", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html", "914d8333aaf7cdc7937142f1bb66972a98c2604b", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html", "914d8333aaf7cdc7937142f1bb66972a98c2604b", "text/html", true, false ) + .urlInfo( "http://fsf.org/licensing/licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/old-licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/old-licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) .isOsiApproved( true ) .build() ); @@ -3167,6 +3402,14 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html", "914d8333aaf7cdc7937142f1bb66972a98c2604b", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html", "914d8333aaf7cdc7937142f1bb66972a98c2604b", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html", "914d8333aaf7cdc7937142f1bb66972a98c2604b", "text/html", true, false ) + .urlInfo( "http://fsf.org/licensing/licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/old-licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/old-licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt", "ba8966e2473a9969bdcab3dc82274c817cfd98a1", "text/plain", true, false ) .isOsiApproved( true ) .build() ); @@ -3185,10 +3428,18 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", "2f96f4fd713e61fb00bb9f3ba073f029afce2ace", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", "2f96f4fd713e61fb00bb9f3ba073f029afce2ace", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", "2f96f4fd713e61fb00bb9f3ba073f029afce2ace", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/LGPL-2.1", "907b676680213346d9e88f3a44b4c79c7ff45a52", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/LGPL-2.1", "907b676680213346d9e88f3a44b4c79c7ff45a52", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/LGPL-2.1", "907b676680213346d9e88f3a44b4c79c7ff45a52", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/LGPL-2.1", "907b676680213346d9e88f3a44b4c79c7ff45a52", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/LGPL-2.1", "1fa1934d71abece4babf044b82e3a8ba0d534e35", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/LGPL-2.1", "1fa1934d71abece4babf044b82e3a8ba0d534e35", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/LGPL-2.1", "1fa1934d71abece4babf044b82e3a8ba0d534e35", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/LGPL-2.1", "1fa1934d71abece4babf044b82e3a8ba0d534e35", "text/html", false, true ) + .urlInfo( "http://fsf.org/licensing/licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/old-licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/old-licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) .isOsiApproved( true ) .build() ); @@ -3207,10 +3458,18 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", "2f96f4fd713e61fb00bb9f3ba073f029afce2ace", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", "2f96f4fd713e61fb00bb9f3ba073f029afce2ace", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", "2f96f4fd713e61fb00bb9f3ba073f029afce2ace", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/LGPL-2.1", "907b676680213346d9e88f3a44b4c79c7ff45a52", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/LGPL-2.1", "907b676680213346d9e88f3a44b4c79c7ff45a52", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/LGPL-2.1", "907b676680213346d9e88f3a44b4c79c7ff45a52", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/LGPL-2.1", "907b676680213346d9e88f3a44b4c79c7ff45a52", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/LGPL-2.1", "1fa1934d71abece4babf044b82e3a8ba0d534e35", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/LGPL-2.1", "1fa1934d71abece4babf044b82e3a8ba0d534e35", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/LGPL-2.1", "1fa1934d71abece4babf044b82e3a8ba0d534e35", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/LGPL-2.1", "1fa1934d71abece4babf044b82e3a8ba0d534e35", "text/html", false, true ) + .urlInfo( "http://fsf.org/licensing/licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/old-licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/old-licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) .isOsiApproved( true ) .build() ); @@ -3229,10 +3488,18 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", "2f96f4fd713e61fb00bb9f3ba073f029afce2ace", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", "2f96f4fd713e61fb00bb9f3ba073f029afce2ace", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", "2f96f4fd713e61fb00bb9f3ba073f029afce2ace", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/LGPL-2.1", "907b676680213346d9e88f3a44b4c79c7ff45a52", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/LGPL-2.1", "907b676680213346d9e88f3a44b4c79c7ff45a52", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/LGPL-2.1", "907b676680213346d9e88f3a44b4c79c7ff45a52", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/LGPL-2.1", "907b676680213346d9e88f3a44b4c79c7ff45a52", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/LGPL-2.1", "1fa1934d71abece4babf044b82e3a8ba0d534e35", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/LGPL-2.1", "1fa1934d71abece4babf044b82e3a8ba0d534e35", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/LGPL-2.1", "1fa1934d71abece4babf044b82e3a8ba0d534e35", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/LGPL-2.1", "1fa1934d71abece4babf044b82e3a8ba0d534e35", "text/html", false, true ) + .urlInfo( "http://fsf.org/licensing/licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/old-licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/old-licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) .isOsiApproved( true ) .build() ); @@ -3251,10 +3518,18 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", "2f96f4fd713e61fb00bb9f3ba073f029afce2ace", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", "2f96f4fd713e61fb00bb9f3ba073f029afce2ace", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", "2f96f4fd713e61fb00bb9f3ba073f029afce2ace", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/LGPL-2.1", "907b676680213346d9e88f3a44b4c79c7ff45a52", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/LGPL-2.1", "907b676680213346d9e88f3a44b4c79c7ff45a52", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/LGPL-2.1", "907b676680213346d9e88f3a44b4c79c7ff45a52", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/LGPL-2.1", "907b676680213346d9e88f3a44b4c79c7ff45a52", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/LGPL-2.1", "1fa1934d71abece4babf044b82e3a8ba0d534e35", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/LGPL-2.1", "1fa1934d71abece4babf044b82e3a8ba0d534e35", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/LGPL-2.1", "1fa1934d71abece4babf044b82e3a8ba0d534e35", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/LGPL-2.1", "1fa1934d71abece4babf044b82e3a8ba0d534e35", "text/html", false, true ) + .urlInfo( "http://fsf.org/licensing/licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/old-licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/old-licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt", "01a6b4bf79aca9b556822601186afab86e8c4fbf", "text/plain", true, false ) .isOsiApproved( true ) .build() ); @@ -3273,10 +3548,18 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/lgpl-3.0-standalone.html", "836ef8f5615224a0f967cfe45bae4fdec8cef5ec", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/lgpl-3.0-standalone.html", "836ef8f5615224a0f967cfe45bae4fdec8cef5ec", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", "836ef8f5615224a0f967cfe45bae4fdec8cef5ec", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/LGPL-3.0", "0b7ed4b5bf00542b6097743acc01287855db567b", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/LGPL-3.0", "0b7ed4b5bf00542b6097743acc01287855db567b", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/LGPL-3.0", "0b7ed4b5bf00542b6097743acc01287855db567b", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/LGPL-3.0", "0b7ed4b5bf00542b6097743acc01287855db567b", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/LGPL-3.0", "950ca7d7ca79b6f0924bd4638961cb6ea33b4fc8", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/LGPL-3.0", "950ca7d7ca79b6f0924bd4638961cb6ea33b4fc8", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/LGPL-3.0", "950ca7d7ca79b6f0924bd4638961cb6ea33b4fc8", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/LGPL-3.0", "950ca7d7ca79b6f0924bd4638961cb6ea33b4fc8", "text/html", false, true ) + .urlInfo( "http://fsf.org/licensing/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) .isOsiApproved( true ) .build() ); @@ -3295,10 +3578,18 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/lgpl-3.0-standalone.html", "836ef8f5615224a0f967cfe45bae4fdec8cef5ec", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/lgpl-3.0-standalone.html", "836ef8f5615224a0f967cfe45bae4fdec8cef5ec", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", "836ef8f5615224a0f967cfe45bae4fdec8cef5ec", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/LGPL-3.0", "0b7ed4b5bf00542b6097743acc01287855db567b", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/LGPL-3.0", "0b7ed4b5bf00542b6097743acc01287855db567b", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/LGPL-3.0", "0b7ed4b5bf00542b6097743acc01287855db567b", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/LGPL-3.0", "0b7ed4b5bf00542b6097743acc01287855db567b", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/LGPL-3.0", "950ca7d7ca79b6f0924bd4638961cb6ea33b4fc8", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/LGPL-3.0", "950ca7d7ca79b6f0924bd4638961cb6ea33b4fc8", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/LGPL-3.0", "950ca7d7ca79b6f0924bd4638961cb6ea33b4fc8", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/LGPL-3.0", "950ca7d7ca79b6f0924bd4638961cb6ea33b4fc8", "text/html", false, true ) + .urlInfo( "http://fsf.org/licensing/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) .isOsiApproved( true ) .build() ); @@ -3317,10 +3608,18 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/lgpl-3.0-standalone.html", "836ef8f5615224a0f967cfe45bae4fdec8cef5ec", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/lgpl-3.0-standalone.html", "836ef8f5615224a0f967cfe45bae4fdec8cef5ec", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", "836ef8f5615224a0f967cfe45bae4fdec8cef5ec", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/LGPL-3.0", "0b7ed4b5bf00542b6097743acc01287855db567b", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/LGPL-3.0", "0b7ed4b5bf00542b6097743acc01287855db567b", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/LGPL-3.0", "0b7ed4b5bf00542b6097743acc01287855db567b", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/LGPL-3.0", "0b7ed4b5bf00542b6097743acc01287855db567b", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/LGPL-3.0", "950ca7d7ca79b6f0924bd4638961cb6ea33b4fc8", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/LGPL-3.0", "950ca7d7ca79b6f0924bd4638961cb6ea33b4fc8", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/LGPL-3.0", "950ca7d7ca79b6f0924bd4638961cb6ea33b4fc8", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/LGPL-3.0", "950ca7d7ca79b6f0924bd4638961cb6ea33b4fc8", "text/html", false, true ) + .urlInfo( "http://fsf.org/licensing/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) .isOsiApproved( true ) .build() ); @@ -3339,10 +3638,18 @@ static SpdxLicenseList createList() .urlInfo( "http://www.gnu.org/licenses/lgpl-3.0-standalone.html", "836ef8f5615224a0f967cfe45bae4fdec8cef5ec", "text/html", true, false ) .urlInfo( "https://gnu.org/licenses/lgpl-3.0-standalone.html", "836ef8f5615224a0f967cfe45bae4fdec8cef5ec", "text/html", true, false ) .urlInfo( "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", "836ef8f5615224a0f967cfe45bae4fdec8cef5ec", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/LGPL-3.0", "0b7ed4b5bf00542b6097743acc01287855db567b", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/LGPL-3.0", "0b7ed4b5bf00542b6097743acc01287855db567b", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/LGPL-3.0", "0b7ed4b5bf00542b6097743acc01287855db567b", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/LGPL-3.0", "0b7ed4b5bf00542b6097743acc01287855db567b", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/LGPL-3.0", "950ca7d7ca79b6f0924bd4638961cb6ea33b4fc8", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/LGPL-3.0", "950ca7d7ca79b6f0924bd4638961cb6ea33b4fc8", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/LGPL-3.0", "950ca7d7ca79b6f0924bd4638961cb6ea33b4fc8", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/LGPL-3.0", "950ca7d7ca79b6f0924bd4638961cb6ea33b4fc8", "text/html", false, true ) + .urlInfo( "http://fsf.org/licensing/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "http://gnu.org/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "http://www.fsf.org/licensing/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "http://www.gnu.org/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "https://fsf.org/licensing/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "https://gnu.org/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "https://www.fsf.org/licensing/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) + .urlInfo( "https://www.gnu.org/licenses/lgpl-3.0.txt", "a8a12e6867d7ee39c21d9b11a984066099b6fb6b", "text/plain", true, false ) .isOsiApproved( true ) .build() ); @@ -3366,10 +3673,10 @@ static SpdxLicenseList createList() .licenseId( "LPL-1.0" ) .seeAlso( "https://opensource.org/licenses/LPL-1.0" ) - .urlInfo( "http://opensource.org/licenses/LPL-1.0", "053161719567499c9d39ab8dfcfcc68f90b7e772", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/LPL-1.0", "053161719567499c9d39ab8dfcfcc68f90b7e772", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/LPL-1.0", "053161719567499c9d39ab8dfcfcc68f90b7e772", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/LPL-1.0", "053161719567499c9d39ab8dfcfcc68f90b7e772", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/LPL-1.0", "aef9ac68795f04ce50433263b6efb2f609260206", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/LPL-1.0", "aef9ac68795f04ce50433263b6efb2f609260206", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/LPL-1.0", "aef9ac68795f04ce50433263b6efb2f609260206", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/LPL-1.0", "aef9ac68795f04ce50433263b6efb2f609260206", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -3384,10 +3691,10 @@ static SpdxLicenseList createList() .seeAlso( "http://plan9.bell-labs.com/plan9/license.html" ) .seeAlso( "https://opensource.org/licenses/LPL-1.02" ) - .urlInfo( "http://opensource.org/licenses/LPL-1.02", "417007292938413f1c8e3f9b81aa6a837b1b1d2f", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/LPL-1.02", "417007292938413f1c8e3f9b81aa6a837b1b1d2f", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/LPL-1.02", "417007292938413f1c8e3f9b81aa6a837b1b1d2f", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/LPL-1.02", "417007292938413f1c8e3f9b81aa6a837b1b1d2f", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/LPL-1.02", "2b017f711d2a635a6c7a4e963f9559115d1be84a", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/LPL-1.02", "2b017f711d2a635a6c7a4e963f9559115d1be84a", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/LPL-1.02", "2b017f711d2a635a6c7a4e963f9559115d1be84a", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/LPL-1.02", "2b017f711d2a635a6c7a4e963f9559115d1be84a", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -3471,10 +3778,10 @@ static SpdxLicenseList createList() .urlInfo( "http://www.latex-project.org/lppl/lppl-1-3c.txt", "47438d5b2ab351796b64b62da105432ab71369ab", "text/plain", true, false ) .urlInfo( "https://latex-project.org/lppl/lppl-1-3c.txt", "47438d5b2ab351796b64b62da105432ab71369ab", "text/plain", true, false ) .urlInfo( "https://www.latex-project.org/lppl/lppl-1-3c.txt", "47438d5b2ab351796b64b62da105432ab71369ab", "text/plain", true, false ) - .urlInfo( "http://opensource.org/licenses/LPPL-1.3c", "04cfe7522ed28cf62282122c3d5054e9096a91a3", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/LPPL-1.3c", "04cfe7522ed28cf62282122c3d5054e9096a91a3", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/LPPL-1.3c", "04cfe7522ed28cf62282122c3d5054e9096a91a3", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/LPPL-1.3c", "04cfe7522ed28cf62282122c3d5054e9096a91a3", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/LPPL-1.3c", "705d86fc7853fd43cca153606a98abfa56699d6d", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/LPPL-1.3c", "705d86fc7853fd43cca153606a98abfa56699d6d", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/LPPL-1.3c", "705d86fc7853fd43cca153606a98abfa56699d6d", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/LPPL-1.3c", "705d86fc7853fd43cca153606a98abfa56699d6d", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -3487,10 +3794,10 @@ static SpdxLicenseList createList() .licenseId( "Latex2e" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Latex2e" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Latex2e", "2ca5b6fdd71131549a180e8feca35bb5f791ef34", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Latex2e", "2ca5b6fdd71131549a180e8feca35bb5f791ef34", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Latex2e", "2ca5b6fdd71131549a180e8feca35bb5f791ef34", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Latex2e", "2ca5b6fdd71131549a180e8feca35bb5f791ef34", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Latex2e", "0066fc8656056ea9b2ef1484d3756c777f73f1f6", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Latex2e", "0066fc8656056ea9b2ef1484d3756c777f73f1f6", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Latex2e", "0066fc8656056ea9b2ef1484d3756c777f73f1f6", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Latex2e", "0066fc8656056ea9b2ef1484d3756c777f73f1f6", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -3503,10 +3810,10 @@ static SpdxLicenseList createList() .licenseId( "Leptonica" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Leptonica" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Leptonica", "411d9d23cdae63879f8a9607f511dc78f627cb27", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Leptonica", "411d9d23cdae63879f8a9607f511dc78f627cb27", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Leptonica", "411d9d23cdae63879f8a9607f511dc78f627cb27", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Leptonica", "411d9d23cdae63879f8a9607f511dc78f627cb27", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Leptonica", "a346e354e8a0b57cfb128a55703c5cf1f6d2fff8", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Leptonica", "a346e354e8a0b57cfb128a55703c5cf1f6d2fff8", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Leptonica", "a346e354e8a0b57cfb128a55703c5cf1f6d2fff8", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Leptonica", "a346e354e8a0b57cfb128a55703c5cf1f6d2fff8", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -3532,10 +3839,10 @@ static SpdxLicenseList createList() .urlInfo( "https://www.forge.gouv.qc.ca/licence/fr/liliq-v1-1/", "343a5d92df234cbcd462c8b7a4cf17fcc22227c0", "text/html", true, false ) .urlInfo( "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-forte-liliq-r-v1-1/", "343a5d92df234cbcd462c8b7a4cf17fcc22227c0", "text/html", true, false ) .urlInfo( "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-liliq-r-v1-1/", "343a5d92df234cbcd462c8b7a4cf17fcc22227c0", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/LiLiQ-P-1.1", "f0c5bc31ae67509bdb25ff6e8b032a3e88ea96b3", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/LiLiQ-P-1.1", "f0c5bc31ae67509bdb25ff6e8b032a3e88ea96b3", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/LiLiQ-P-1.1", "f0c5bc31ae67509bdb25ff6e8b032a3e88ea96b3", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/LiLiQ-P-1.1", "f0c5bc31ae67509bdb25ff6e8b032a3e88ea96b3", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/LiLiQ-P-1.1", "b60c7fd62b5cfdc339053985d37499e0a759c610", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/LiLiQ-P-1.1", "b60c7fd62b5cfdc339053985d37499e0a759c610", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/LiLiQ-P-1.1", "b60c7fd62b5cfdc339053985d37499e0a759c610", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/LiLiQ-P-1.1", "b60c7fd62b5cfdc339053985d37499e0a759c610", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -3561,10 +3868,10 @@ static SpdxLicenseList createList() .urlInfo( "https://www.forge.gouv.qc.ca/licence/fr/liliq-v1-1/", "343a5d92df234cbcd462c8b7a4cf17fcc22227c0", "text/html", true, false ) .urlInfo( "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-forte-liliq-r-v1-1/", "343a5d92df234cbcd462c8b7a4cf17fcc22227c0", "text/html", true, false ) .urlInfo( "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-liliq-r-v1-1/", "343a5d92df234cbcd462c8b7a4cf17fcc22227c0", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/LiLiQ-R-1.1", "87655ae11579cfafdaa6d9c2bafc566b0833d672", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/LiLiQ-R-1.1", "87655ae11579cfafdaa6d9c2bafc566b0833d672", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/LiLiQ-R-1.1", "87655ae11579cfafdaa6d9c2bafc566b0833d672", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/LiLiQ-R-1.1", "87655ae11579cfafdaa6d9c2bafc566b0833d672", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/LiLiQ-R-1.1", "480556fc34dc97fbeb6c5e11875878649b809a9e", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/LiLiQ-R-1.1", "480556fc34dc97fbeb6c5e11875878649b809a9e", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/LiLiQ-R-1.1", "480556fc34dc97fbeb6c5e11875878649b809a9e", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/LiLiQ-R-1.1", "480556fc34dc97fbeb6c5e11875878649b809a9e", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -3590,10 +3897,10 @@ static SpdxLicenseList createList() .urlInfo( "https://www.forge.gouv.qc.ca/licence/fr/liliq-v1-1/", "343a5d92df234cbcd462c8b7a4cf17fcc22227c0", "text/html", true, false ) .urlInfo( "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-forte-liliq-r-v1-1/", "343a5d92df234cbcd462c8b7a4cf17fcc22227c0", "text/html", true, false ) .urlInfo( "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-liliq-r-v1-1/", "343a5d92df234cbcd462c8b7a4cf17fcc22227c0", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/LiLiQ-Rplus-1.1", "7f80406b5da4c34a1518e6630ff304d226ed8a34", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/LiLiQ-Rplus-1.1", "7f80406b5da4c34a1518e6630ff304d226ed8a34", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/LiLiQ-Rplus-1.1", "7f80406b5da4c34a1518e6630ff304d226ed8a34", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/LiLiQ-Rplus-1.1", "7f80406b5da4c34a1518e6630ff304d226ed8a34", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/LiLiQ-Rplus-1.1", "6ef18e065862cd3ca4ba4ffe313c760d4133d121", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/LiLiQ-Rplus-1.1", "6ef18e065862cd3ca4ba4ffe313c760d4133d121", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/LiLiQ-Rplus-1.1", "6ef18e065862cd3ca4ba4ffe313c760d4133d121", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/LiLiQ-Rplus-1.1", "6ef18e065862cd3ca4ba4ffe313c760d4133d121", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -3632,10 +3939,22 @@ static SpdxLicenseList createList() .licenseId( "MIT" ) .seeAlso( "https://opensource.org/licenses/MIT" ) - .urlInfo( "http://opensource.org/licenses/MIT", "0c2c759773dec5c83ca12af00a76934ee1135555", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/MIT", "0c2c759773dec5c83ca12af00a76934ee1135555", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/MIT", "0c2c759773dec5c83ca12af00a76934ee1135555", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/MIT", "0c2c759773dec5c83ca12af00a76934ee1135555", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/MIT", "8b1421deee0354c1f9b222e29b54eab50ae2aab3", "text/html", false, true ) + .urlInfo( "http://opensource.org/licenses/mit-license", "8b1421deee0354c1f9b222e29b54eab50ae2aab3", "text/html", false, true ) + .urlInfo( "http://opensource.org/licenses/mit-license.html", "8b1421deee0354c1f9b222e29b54eab50ae2aab3", "text/html", false, true ) + .urlInfo( "http://opensource.org/licenses/mit-license.php", "8b1421deee0354c1f9b222e29b54eab50ae2aab3", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/MIT", "8b1421deee0354c1f9b222e29b54eab50ae2aab3", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/mit-license", "8b1421deee0354c1f9b222e29b54eab50ae2aab3", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/mit-license.html", "8b1421deee0354c1f9b222e29b54eab50ae2aab3", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/mit-license.php", "8b1421deee0354c1f9b222e29b54eab50ae2aab3", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/MIT", "8b1421deee0354c1f9b222e29b54eab50ae2aab3", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/mit-license", "8b1421deee0354c1f9b222e29b54eab50ae2aab3", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/mit-license.html", "8b1421deee0354c1f9b222e29b54eab50ae2aab3", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/mit-license.php", "8b1421deee0354c1f9b222e29b54eab50ae2aab3", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/MIT", "8b1421deee0354c1f9b222e29b54eab50ae2aab3", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/mit-license", "8b1421deee0354c1f9b222e29b54eab50ae2aab3", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/mit-license.html", "8b1421deee0354c1f9b222e29b54eab50ae2aab3", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/mit-license.php", "8b1421deee0354c1f9b222e29b54eab50ae2aab3", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -3650,7 +3969,8 @@ static SpdxLicenseList createList() .seeAlso( "https://romanrm.net/mit-zero" ) .seeAlso( "https://github.com/awsdocs/aws-cloud9-user-guide/blob/master/LICENSE-SAMPLECODE" ) - .urlInfo( "https://romanrm.net/mit-zero", null, null, false, true ) + .urlInfo( "http://romanrm.net/mit-zero", "55f98e9956fa88358c1ece191b8ba14dbc0f44ef", "text/html", true, true ) + .urlInfo( "https://romanrm.net/mit-zero", "55f98e9956fa88358c1ece191b8ba14dbc0f44ef", "text/html", true, true ) .isOsiApproved( true ) .build() ); @@ -3662,8 +3982,28 @@ static SpdxLicenseList createList() .name( "CMU License" ) .licenseId( "MIT-CMU" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style" ) + .seeAlso( "https://github.com/python-pillow/Pillow/blob/fffb426092c8db24a5f4b6df243a8a3c01fb63cd/LICENSE" ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", null, null, false, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT#enna", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT#feh", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT#enna", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT#feh", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT#enna", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT#feh", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT#enna", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT#feh", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -3676,10 +4016,10 @@ static SpdxLicenseList createList() .licenseId( "MIT-advertising" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT_With_Advertising", "34f3d5d8d2c650ea5e734d775e0397b07179c99d", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT_With_Advertising", "34f3d5d8d2c650ea5e734d775e0397b07179c99d", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising", "34f3d5d8d2c650ea5e734d775e0397b07179c99d", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT_With_Advertising", "34f3d5d8d2c650ea5e734d775e0397b07179c99d", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT_With_Advertising", "9d60fdaa27de956f7d28dcfdec9b4de7920c7f22", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT_With_Advertising", "9d60fdaa27de956f7d28dcfdec9b4de7920c7f22", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising", "9d60fdaa27de956f7d28dcfdec9b4de7920c7f22", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT_With_Advertising", "9d60fdaa27de956f7d28dcfdec9b4de7920c7f22", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -3692,7 +4032,26 @@ static SpdxLicenseList createList() .licenseId( "MIT-enna" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/MIT#enna" ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT#enna", null, null, false, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT#enna", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT#feh", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT#enna", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT#feh", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT#enna", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT#feh", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT#enna", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT#feh", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -3705,7 +4064,26 @@ static SpdxLicenseList createList() .licenseId( "MIT-feh" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/MIT#feh" ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT#feh", null, null, false, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT#enna", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT#feh", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT#enna", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT#feh", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT#enna", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT#feh", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT#enna", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT#feh", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -3718,10 +4096,10 @@ static SpdxLicenseList createList() .licenseId( "MITNFA" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/MITNFA" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/MITNFA", "fa242b9b757de68e6c6fb3fc07fe44ef372d5052", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MITNFA", "fa242b9b757de68e6c6fb3fc07fe44ef372d5052", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/MITNFA", "fa242b9b757de68e6c6fb3fc07fe44ef372d5052", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MITNFA", "fa242b9b757de68e6c6fb3fc07fe44ef372d5052", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MITNFA", "77ae78dbb8de0913de66c4fdcc4a587f8318daeb", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MITNFA", "77ae78dbb8de0913de66c4fdcc4a587f8318daeb", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MITNFA", "77ae78dbb8de0913de66c4fdcc4a587f8318daeb", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MITNFA", "77ae78dbb8de0913de66c4fdcc4a587f8318daeb", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -3739,10 +4117,10 @@ static SpdxLicenseList createList() .urlInfo( "http://www.mozilla.org/MPL/MPL-1.0.html", "ea7ac7d1a5d6a61095e8513045f789e695739ab4", "text/html", true, false ) .urlInfo( "https://mozilla.org/MPL/MPL-1.0.html", "ea7ac7d1a5d6a61095e8513045f789e695739ab4", "text/html", true, false ) .urlInfo( "https://www.mozilla.org/MPL/MPL-1.0.html", "ea7ac7d1a5d6a61095e8513045f789e695739ab4", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/MPL-1.0", "62e31cba16b94a944ea7b20e95c7904089650707", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/MPL-1.0", "62e31cba16b94a944ea7b20e95c7904089650707", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/MPL-1.0", "62e31cba16b94a944ea7b20e95c7904089650707", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/MPL-1.0", "62e31cba16b94a944ea7b20e95c7904089650707", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/MPL-1.0", "80429e50a57da7e83d1ebc0e92a7407195b0edf9", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/MPL-1.0", "80429e50a57da7e83d1ebc0e92a7407195b0edf9", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/MPL-1.0", "80429e50a57da7e83d1ebc0e92a7407195b0edf9", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/MPL-1.0", "80429e50a57da7e83d1ebc0e92a7407195b0edf9", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -3761,10 +4139,10 @@ static SpdxLicenseList createList() .urlInfo( "http://www.mozilla.org/MPL/MPL-1.1.html", "9e1fce8c91325bc318442713e4884137370e9147", "text/html", true, false ) .urlInfo( "https://mozilla.org/MPL/MPL-1.1.html", "9e1fce8c91325bc318442713e4884137370e9147", "text/html", true, false ) .urlInfo( "https://www.mozilla.org/MPL/MPL-1.1.html", "9e1fce8c91325bc318442713e4884137370e9147", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/MPL-1.1", "cad130ae63b5f92a982866ef169984d9cd54c680", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/MPL-1.1", "cad130ae63b5f92a982866ef169984d9cd54c680", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/MPL-1.1", "cad130ae63b5f92a982866ef169984d9cd54c680", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/MPL-1.1", "cad130ae63b5f92a982866ef169984d9cd54c680", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/MPL-1.1", "16e335a43c3f7ade9aed1f91e052f660a90e42c1", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/MPL-1.1", "16e335a43c3f7ade9aed1f91e052f660a90e42c1", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/MPL-1.1", "16e335a43c3f7ade9aed1f91e052f660a90e42c1", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/MPL-1.1", "16e335a43c3f7ade9aed1f91e052f660a90e42c1", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -3783,10 +4161,10 @@ static SpdxLicenseList createList() .urlInfo( "http://www.mozilla.org/MPL/2.0/", "39842cd17d783d2a49035cdb59bf800a79df0d4e", "text/html", true, false ) .urlInfo( "https://mozilla.org/MPL/2.0/", "39842cd17d783d2a49035cdb59bf800a79df0d4e", "text/html", true, false ) .urlInfo( "https://www.mozilla.org/MPL/2.0/", "39842cd17d783d2a49035cdb59bf800a79df0d4e", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/MPL-2.0", "80832253aa55be0cfd77da769c635effca43bcbc", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/MPL-2.0", "80832253aa55be0cfd77da769c635effca43bcbc", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/MPL-2.0", "80832253aa55be0cfd77da769c635effca43bcbc", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/MPL-2.0", "80832253aa55be0cfd77da769c635effca43bcbc", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/MPL-2.0", "9fd2b073513bc1b9cde16c3d1321ef54f30dc98b", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/MPL-2.0", "9fd2b073513bc1b9cde16c3d1321ef54f30dc98b", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/MPL-2.0", "9fd2b073513bc1b9cde16c3d1321ef54f30dc98b", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/MPL-2.0", "9fd2b073513bc1b9cde16c3d1321ef54f30dc98b", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -3804,10 +4182,10 @@ static SpdxLicenseList createList() .urlInfo( "http://www.mozilla.org/MPL/2.0/", "39842cd17d783d2a49035cdb59bf800a79df0d4e", "text/html", true, false ) .urlInfo( "https://mozilla.org/MPL/2.0/", "39842cd17d783d2a49035cdb59bf800a79df0d4e", "text/html", true, false ) .urlInfo( "https://www.mozilla.org/MPL/2.0/", "39842cd17d783d2a49035cdb59bf800a79df0d4e", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/MPL-2.0", "80832253aa55be0cfd77da769c635effca43bcbc", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/MPL-2.0", "80832253aa55be0cfd77da769c635effca43bcbc", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/MPL-2.0", "80832253aa55be0cfd77da769c635effca43bcbc", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/MPL-2.0", "80832253aa55be0cfd77da769c635effca43bcbc", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/MPL-2.0", "9fd2b073513bc1b9cde16c3d1321ef54f30dc98b", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/MPL-2.0", "9fd2b073513bc1b9cde16c3d1321ef54f30dc98b", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/MPL-2.0", "9fd2b073513bc1b9cde16c3d1321ef54f30dc98b", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/MPL-2.0", "9fd2b073513bc1b9cde16c3d1321ef54f30dc98b", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -3822,10 +4200,10 @@ static SpdxLicenseList createList() .seeAlso( "http://www.microsoft.com/opensource/licenses.mspx" ) .seeAlso( "https://opensource.org/licenses/MS-PL" ) - .urlInfo( "http://opensource.org/licenses/MS-PL", "806025dba33b2a84453f675c4874703189e05433", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/MS-PL", "806025dba33b2a84453f675c4874703189e05433", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/MS-PL", "806025dba33b2a84453f675c4874703189e05433", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/MS-PL", "806025dba33b2a84453f675c4874703189e05433", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/MS-PL", "189e532febe1cd9cfeb7c8b56b8049de43f94317", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/MS-PL", "189e532febe1cd9cfeb7c8b56b8049de43f94317", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/MS-PL", "189e532febe1cd9cfeb7c8b56b8049de43f94317", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/MS-PL", "189e532febe1cd9cfeb7c8b56b8049de43f94317", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -3840,10 +4218,10 @@ static SpdxLicenseList createList() .seeAlso( "http://www.microsoft.com/opensource/licenses.mspx" ) .seeAlso( "https://opensource.org/licenses/MS-RL" ) - .urlInfo( "http://opensource.org/licenses/MS-RL", "2696a10c257aab153b90fee0d20faad8fe45ac77", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/MS-RL", "2696a10c257aab153b90fee0d20faad8fe45ac77", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/MS-RL", "2696a10c257aab153b90fee0d20faad8fe45ac77", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/MS-RL", "2696a10c257aab153b90fee0d20faad8fe45ac77", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/MS-RL", "079a7e50ad644e15382dae28d51fc71bb73c3f5b", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/MS-RL", "079a7e50ad644e15382dae28d51fc71bb73c3f5b", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/MS-RL", "079a7e50ad644e15382dae28d51fc71bb73c3f5b", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/MS-RL", "079a7e50ad644e15382dae28d51fc71bb73c3f5b", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -3856,10 +4234,10 @@ static SpdxLicenseList createList() .licenseId( "MTLL" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License", "8fa87194a8039d1d93157f0db8762cf0267b6a27", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License", "8fa87194a8039d1d93157f0db8762cf0267b6a27", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License", "8fa87194a8039d1d93157f0db8762cf0267b6a27", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License", "8fa87194a8039d1d93157f0db8762cf0267b6a27", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License", "e779f5af14f0e2b439bc2c1085aa853ad2c0eab0", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License", "e779f5af14f0e2b439bc2c1085aa853ad2c0eab0", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License", "e779f5af14f0e2b439bc2c1085aa853ad2c0eab0", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License", "e779f5af14f0e2b439bc2c1085aa853ad2c0eab0", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -3872,10 +4250,10 @@ static SpdxLicenseList createList() .licenseId( "MakeIndex" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/MakeIndex" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/MakeIndex", "e30a2c9e70b3621154773f38ffb1806ac454de9f", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MakeIndex", "e30a2c9e70b3621154773f38ffb1806ac454de9f", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/MakeIndex", "e30a2c9e70b3621154773f38ffb1806ac454de9f", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MakeIndex", "e30a2c9e70b3621154773f38ffb1806ac454de9f", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MakeIndex", "15f6eb6ff20e78fc7622405ad1998ed2c83c2d3e", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MakeIndex", "15f6eb6ff20e78fc7622405ad1998ed2c83c2d3e", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MakeIndex", "15f6eb6ff20e78fc7622405ad1998ed2c83c2d3e", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MakeIndex", "15f6eb6ff20e78fc7622405ad1998ed2c83c2d3e", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -3888,10 +4266,10 @@ static SpdxLicenseList createList() .licenseId( "MirOS" ) .seeAlso( "https://opensource.org/licenses/MirOS" ) - .urlInfo( "http://opensource.org/licenses/MirOS", "0a292aadf7aae1e03ddd17e0d393107bd15cbf40", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/MirOS", "0a292aadf7aae1e03ddd17e0d393107bd15cbf40", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/MirOS", "0a292aadf7aae1e03ddd17e0d393107bd15cbf40", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/MirOS", "0a292aadf7aae1e03ddd17e0d393107bd15cbf40", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/MirOS", "9e09375730143747ce1086fbbf48737c05f39a2e", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/MirOS", "9e09375730143747ce1086fbbf48737c05f39a2e", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/MirOS", "9e09375730143747ce1086fbbf48737c05f39a2e", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/MirOS", "9e09375730143747ce1086fbbf48737c05f39a2e", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -3904,10 +4282,10 @@ static SpdxLicenseList createList() .licenseId( "Motosoto" ) .seeAlso( "https://opensource.org/licenses/Motosoto" ) - .urlInfo( "http://opensource.org/licenses/Motosoto", "c38b4f3b6aa19d04d0c0b6308409ae936d161395", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/Motosoto", "c38b4f3b6aa19d04d0c0b6308409ae936d161395", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/Motosoto", "c38b4f3b6aa19d04d0c0b6308409ae936d161395", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/Motosoto", "c38b4f3b6aa19d04d0c0b6308409ae936d161395", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/Motosoto", "f75ccbf1997379673ac1375318e9ef1e17ecd2a6", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/Motosoto", "f75ccbf1997379673ac1375318e9ef1e17ecd2a6", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/Motosoto", "f75ccbf1997379673ac1375318e9ef1e17ecd2a6", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/Motosoto", "f75ccbf1997379673ac1375318e9ef1e17ecd2a6", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -3920,10 +4298,10 @@ static SpdxLicenseList createList() .licenseId( "Multics" ) .seeAlso( "https://opensource.org/licenses/Multics" ) - .urlInfo( "http://opensource.org/licenses/Multics", "c3c2f330b2cc0e92d4a9b2bb77cb7ac639f64117", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/Multics", "c3c2f330b2cc0e92d4a9b2bb77cb7ac639f64117", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/Multics", "c3c2f330b2cc0e92d4a9b2bb77cb7ac639f64117", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/Multics", "c3c2f330b2cc0e92d4a9b2bb77cb7ac639f64117", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/Multics", "acba80ae79da50677054d03fd656904a2562f46f", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/Multics", "acba80ae79da50677054d03fd656904a2562f46f", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/Multics", "acba80ae79da50677054d03fd656904a2562f46f", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/Multics", "acba80ae79da50677054d03fd656904a2562f46f", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -3936,10 +4314,10 @@ static SpdxLicenseList createList() .licenseId( "Mup" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Mup" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Mup", "fcad72b7af7e6b0710c797e40ef56fe858cc6715", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Mup", "fcad72b7af7e6b0710c797e40ef56fe858cc6715", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Mup", "fcad72b7af7e6b0710c797e40ef56fe858cc6715", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Mup", "fcad72b7af7e6b0710c797e40ef56fe858cc6715", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Mup", "f9ce2914ce453db5f9b436b5f663b147cbbfbd11", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Mup", "f9ce2914ce453db5f9b436b5f663b147cbbfbd11", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Mup", "f9ce2914ce453db5f9b436b5f663b147cbbfbd11", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Mup", "f9ce2914ce453db5f9b436b5f663b147cbbfbd11", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -3955,10 +4333,10 @@ static SpdxLicenseList createList() .urlInfo( "http://ti.arc.nasa.gov/opensource/nosa/", "11e8aeb6176bf4bcc52cbef177c081bf099cccae", "text/html", true, false ) .urlInfo( "https://ti.arc.nasa.gov/opensource/nosa/", "11e8aeb6176bf4bcc52cbef177c081bf099cccae", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/NASA-1.3", "61efb6be1d9864754cfb643f11870bf20e983716", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/NASA-1.3", "61efb6be1d9864754cfb643f11870bf20e983716", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/NASA-1.3", "61efb6be1d9864754cfb643f11870bf20e983716", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/NASA-1.3", "61efb6be1d9864754cfb643f11870bf20e983716", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/NASA-1.3", "29681c7ddf72b212da244a0102e5bfdd37949661", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/NASA-1.3", "29681c7ddf72b212da244a0102e5bfdd37949661", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/NASA-1.3", "29681c7ddf72b212da244a0102e5bfdd37949661", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/NASA-1.3", "29681c7ddf72b212da244a0102e5bfdd37949661", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -3988,10 +4366,10 @@ static SpdxLicenseList createList() .seeAlso( "http://otm.illinois.edu/uiuc_openSource" ) .seeAlso( "https://opensource.org/licenses/NCSA" ) - .urlInfo( "http://opensource.org/licenses/NCSA", "12a5b5912a92e76316038d73a2d4717ee4dfb86e", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/NCSA", "12a5b5912a92e76316038d73a2d4717ee4dfb86e", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/NCSA", "12a5b5912a92e76316038d73a2d4717ee4dfb86e", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/NCSA", "12a5b5912a92e76316038d73a2d4717ee4dfb86e", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/NCSA", "3141b0642cf9e6e44ca952c0df2805d1394d5072", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/NCSA", "3141b0642cf9e6e44ca952c0df2805d1394d5072", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/NCSA", "3141b0642cf9e6e44ca952c0df2805d1394d5072", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/NCSA", "3141b0642cf9e6e44ca952c0df2805d1394d5072", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -4004,10 +4382,10 @@ static SpdxLicenseList createList() .licenseId( "NGPL" ) .seeAlso( "https://opensource.org/licenses/NGPL" ) - .urlInfo( "http://opensource.org/licenses/NGPL", "3411986060908b67db87c8ef963c27c0819206c5", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/NGPL", "3411986060908b67db87c8ef963c27c0819206c5", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/NGPL", "3411986060908b67db87c8ef963c27c0819206c5", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/NGPL", "3411986060908b67db87c8ef963c27c0819206c5", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/NGPL", "9a429cbf18343b339a7414c0bcc7a5999b9bd3ec", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/NGPL", "9a429cbf18343b339a7414c0bcc7a5999b9bd3ec", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/NGPL", "9a429cbf18343b339a7414c0bcc7a5999b9bd3ec", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/NGPL", "9a429cbf18343b339a7414c0bcc7a5999b9bd3ec", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -4020,8 +4398,8 @@ static SpdxLicenseList createList() .licenseId( "NLOD-1.0" ) .seeAlso( "http://data.norge.no/nlod/en/1.0" ) - .urlInfo( "http://data.norge.no/nlod/en/1.0", "c947bc5e0871a5a3450c5236f01cff433fc83e30", "text/html", true, true ) - .urlInfo( "http://www.data.norge.no/nlod/en/1.0", "c947bc5e0871a5a3450c5236f01cff433fc83e30", "text/html", true, true ) + .urlInfo( "http://data.norge.no/nlod/en/1.0", "3df89100286eb8f646295e602b440b889edfe1da", "text/html", true, true ) + .urlInfo( "http://www.data.norge.no/nlod/en/1.0", "3df89100286eb8f646295e602b440b889edfe1da", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -4034,10 +4412,8 @@ static SpdxLicenseList createList() .licenseId( "NLPL" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/NLPL" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/NLPL", "7a5f77c09046c1feb00250093de33525a7d4ae20", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/NLPL", "7a5f77c09046c1feb00250093de33525a7d4ae20", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/NLPL", "7a5f77c09046c1feb00250093de33525a7d4ae20", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/NLPL", "7a5f77c09046c1feb00250093de33525a7d4ae20", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/NLPL", "7b9bbe8df25314d0b33a26631f1cb64b41c55628", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/NLPL", "7b9bbe8df25314d0b33a26631f1cb64b41c55628", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -4051,7 +4427,7 @@ static SpdxLicenseList createList() .licenseId( "NOSL" ) .seeAlso( "http://bits.netizen.com.au/licenses/NOSL/nosl.txt" ) - .urlInfo( "http://bits.netizen.com.au/licenses/NOSL/nosl.txt", "d553781af37e2cd9dc4d670713b640c7e973154c", "text/html", true, false ) + .urlInfo( "http://bits.netizen.com.au/licenses/NOSL/nosl.txt", "5468229b50c59c46a173a76abbca76bba8943b2a", "text/html", true, false ) .isOsiApproved( false ) .build() ); @@ -4098,10 +4474,10 @@ static SpdxLicenseList createList() .licenseId( "NPOSL-3.0" ) .seeAlso( "https://opensource.org/licenses/NOSL3.0" ) - .urlInfo( "http://opensource.org/licenses/NOSL3.0", "786b95a0baa429286f743ba5ca5e10a9104a410a", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/NOSL3.0", "786b95a0baa429286f743ba5ca5e10a9104a410a", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/NOSL3.0", "786b95a0baa429286f743ba5ca5e10a9104a410a", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/NOSL3.0", "786b95a0baa429286f743ba5ca5e10a9104a410a", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/NOSL3.0", "3aa334e9eba1c77cc197cd922a4f6527e58232ce", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/NOSL3.0", "3aa334e9eba1c77cc197cd922a4f6527e58232ce", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/NOSL3.0", "3aa334e9eba1c77cc197cd922a4f6527e58232ce", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/NOSL3.0", "3aa334e9eba1c77cc197cd922a4f6527e58232ce", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -4130,10 +4506,10 @@ static SpdxLicenseList createList() .licenseId( "NTP" ) .seeAlso( "https://opensource.org/licenses/NTP" ) - .urlInfo( "http://opensource.org/licenses/NTP", "c6b1550342cf1325c584621bb02bc5a96dd66f23", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/NTP", "c6b1550342cf1325c584621bb02bc5a96dd66f23", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/NTP", "c6b1550342cf1325c584621bb02bc5a96dd66f23", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/NTP", "c6b1550342cf1325c584621bb02bc5a96dd66f23", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/NTP", "aedbe014257dedfc949723821731ad7736b54956", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/NTP", "aedbe014257dedfc949723821731ad7736b54956", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/NTP", "aedbe014257dedfc949723821731ad7736b54956", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/NTP", "aedbe014257dedfc949723821731ad7736b54956", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -4146,10 +4522,10 @@ static SpdxLicenseList createList() .licenseId( "Naumen" ) .seeAlso( "https://opensource.org/licenses/Naumen" ) - .urlInfo( "http://opensource.org/licenses/Naumen", "e53fe416d1f5ce544d42f19b59a360df0c60bf53", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/Naumen", "e53fe416d1f5ce544d42f19b59a360df0c60bf53", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/Naumen", "e53fe416d1f5ce544d42f19b59a360df0c60bf53", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/Naumen", "e53fe416d1f5ce544d42f19b59a360df0c60bf53", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/Naumen", "83a7381f252c5a90fb736d1025f53923f699766b", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/Naumen", "83a7381f252c5a90fb736d1025f53923f699766b", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/Naumen", "83a7381f252c5a90fb736d1025f53923f699766b", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/Naumen", "83a7381f252c5a90fb736d1025f53923f699766b", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -4192,10 +4568,10 @@ static SpdxLicenseList createList() .licenseId( "Newsletr" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Newsletr" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Newsletr", "f4583ff111c96c49ea2e91574578a3546cee8b44", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Newsletr", "f4583ff111c96c49ea2e91574578a3546cee8b44", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Newsletr", "f4583ff111c96c49ea2e91574578a3546cee8b44", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Newsletr", "f4583ff111c96c49ea2e91574578a3546cee8b44", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Newsletr", "b5f0913b2bdce15c3ae466bdd6a7e59f6904ab05", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Newsletr", "b5f0913b2bdce15c3ae466bdd6a7e59f6904ab05", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Newsletr", "b5f0913b2bdce15c3ae466bdd6a7e59f6904ab05", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Newsletr", "b5f0913b2bdce15c3ae466bdd6a7e59f6904ab05", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -4209,10 +4585,10 @@ static SpdxLicenseList createList() .licenseId( "Nokia" ) .seeAlso( "https://opensource.org/licenses/nokia" ) - .urlInfo( "http://opensource.org/licenses/nokia", "e49713a3ae380b13bca5a6b3ab655b7505b64510", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/nokia", "e49713a3ae380b13bca5a6b3ab655b7505b64510", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/nokia", "e49713a3ae380b13bca5a6b3ab655b7505b64510", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/nokia", "e49713a3ae380b13bca5a6b3ab655b7505b64510", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/nokia", "36bb5004517048de1274fedc881e5c490679f9b0", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/nokia", "36bb5004517048de1274fedc881e5c490679f9b0", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/nokia", "36bb5004517048de1274fedc881e5c490679f9b0", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/nokia", "36bb5004517048de1274fedc881e5c490679f9b0", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -4225,7 +4601,10 @@ static SpdxLicenseList createList() .licenseId( "Noweb" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Noweb" ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Noweb", null, null, false, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Noweb", "2c5e531960095d86cef306683e4488075aca726d", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Noweb", "2c5e531960095d86cef306683e4488075aca726d", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Noweb", "2c5e531960095d86cef306683e4488075aca726d", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Noweb", "2c5e531960095d86cef306683e4488075aca726d", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -4239,7 +4618,10 @@ static SpdxLicenseList createList() .licenseId( "Nunit" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Nunit" ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Nunit", null, null, false, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Nunit", "664c48dfa630b006f31aad9f43cf8e0c2012ead9", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Nunit", "664c48dfa630b006f31aad9f43cf8e0c2012ead9", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Nunit", "664c48dfa630b006f31aad9f43cf8e0c2012ead9", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Nunit", "664c48dfa630b006f31aad9f43cf8e0c2012ead9", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -4252,7 +4634,10 @@ static SpdxLicenseList createList() .licenseId( "OCCT-PL" ) .seeAlso( "http://www.opencascade.com/content/occt-public-license" ) - .urlInfo( "http://www.opencascade.com/content/occt-public-license", null, null, false, true ) + .urlInfo( "http://opencascade.com/content/occt-public-license", "127bdd9849acb8993f245aab7fd8b7e4dd0b9f72", "text/html", true, true ) + .urlInfo( "http://www.opencascade.com/content/occt-public-license", "127bdd9849acb8993f245aab7fd8b7e4dd0b9f72", "text/html", true, true ) + .urlInfo( "https://opencascade.com/content/occt-public-license", "127bdd9849acb8993f245aab7fd8b7e4dd0b9f72", "text/html", true, true ) + .urlInfo( "https://www.opencascade.com/content/occt-public-license", "127bdd9849acb8993f245aab7fd8b7e4dd0b9f72", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -4266,10 +4651,10 @@ static SpdxLicenseList createList() .seeAlso( "http://www.oclc.org/research/activities/software/license/v2final.htm" ) .seeAlso( "https://opensource.org/licenses/OCLC-2.0" ) - .urlInfo( "http://opensource.org/licenses/OCLC-2.0", "3ec3f121954f07cfe0d84d7e6f59877d9825d134", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/OCLC-2.0", "3ec3f121954f07cfe0d84d7e6f59877d9825d134", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/OCLC-2.0", "3ec3f121954f07cfe0d84d7e6f59877d9825d134", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/OCLC-2.0", "3ec3f121954f07cfe0d84d7e6f59877d9825d134", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/OCLC-2.0", "2f94ac172687877d3cb3786f4865c67965ba1647", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/OCLC-2.0", "2f94ac172687877d3cb3786f4865c67965ba1647", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/OCLC-2.0", "2f94ac172687877d3cb3786f4865c67965ba1647", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/OCLC-2.0", "2f94ac172687877d3cb3786f4865c67965ba1647", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -4315,6 +4700,8 @@ static SpdxLicenseList createList() .name( "SIL Open Font License 1.0" ) .licenseId( "OFL-1.0" ) .seeAlso( "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web" ) + + .urlInfo( "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web", null, null, false, false ) .isOsiApproved( false ) .build() ); @@ -4329,10 +4716,11 @@ static SpdxLicenseList createList() .seeAlso( "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web" ) .seeAlso( "https://opensource.org/licenses/OFL-1.1" ) - .urlInfo( "http://opensource.org/licenses/OFL-1.1", "f8ca4c179f3b6058df8601d47a0dc185194e9fa1", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/OFL-1.1", "f8ca4c179f3b6058df8601d47a0dc185194e9fa1", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/OFL-1.1", "f8ca4c179f3b6058df8601d47a0dc185194e9fa1", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/OFL-1.1", "f8ca4c179f3b6058df8601d47a0dc185194e9fa1", "text/html", true, true ) + .urlInfo( "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web", null, null, false, false ) + .urlInfo( "http://opensource.org/licenses/OFL-1.1", "e58cf9e0ec535d4fa242ab36f92aded54ec57f7b", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/OFL-1.1", "e58cf9e0ec535d4fa242ab36f92aded54ec57f7b", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/OFL-1.1", "e58cf9e0ec535d4fa242ab36f92aded54ec57f7b", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/OFL-1.1", "e58cf9e0ec535d4fa242ab36f92aded54ec57f7b", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -4398,10 +4786,10 @@ static SpdxLicenseList createList() .urlInfo( "http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt", "526e91e6d907dcb644d5e3c72e6d889250fd4cb4", "text/plain", true, false ) .urlInfo( "https://opengroup.org/testing/downloads/The_Open_Group_TSL.txt", "526e91e6d907dcb644d5e3c72e6d889250fd4cb4", "text/plain", true, false ) .urlInfo( "https://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt", "526e91e6d907dcb644d5e3c72e6d889250fd4cb4", "text/plain", true, false ) - .urlInfo( "http://opensource.org/licenses/OGTSL", "8a52eb473046c3c674629b04b6323eb185420838", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/OGTSL", "8a52eb473046c3c674629b04b6323eb185420838", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/OGTSL", "8a52eb473046c3c674629b04b6323eb185420838", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/OGTSL", "8a52eb473046c3c674629b04b6323eb185420838", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/OGTSL", "e01f75444a4577ecddfaa220cada37fcaa80605a", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/OGTSL", "e01f75444a4577ecddfaa220cada37fcaa80605a", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/OGTSL", "e01f75444a4577ecddfaa220cada37fcaa80605a", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/OGTSL", "e01f75444a4577ecddfaa220cada37fcaa80605a", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -4656,10 +5044,10 @@ static SpdxLicenseList createList() .licenseId( "OML" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Open_Market_License" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Open_Market_License", "abb4d124816dedecdb31b8135f1db2de5d1ade2b", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Open_Market_License", "abb4d124816dedecdb31b8135f1db2de5d1ade2b", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Open_Market_License", "abb4d124816dedecdb31b8135f1db2de5d1ade2b", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Open_Market_License", "abb4d124816dedecdb31b8135f1db2de5d1ade2b", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Open_Market_License", "397e02bdd0af54afd96b9949bb190ba0b12c37e6", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Open_Market_License", "397e02bdd0af54afd96b9949bb190ba0b12c37e6", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Open_Market_License", "397e02bdd0af54afd96b9949bb190ba0b12c37e6", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Open_Market_License", "397e02bdd0af54afd96b9949bb190ba0b12c37e6", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -4673,10 +5061,10 @@ static SpdxLicenseList createList() .seeAlso( "http://old.koalateam.com/jackaroo/OPL_1_0.TXT" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Open_Public_License" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Open_Public_License", "2d328a8216ab4f71264dc8bb47f3a3f33e8da266", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Open_Public_License", "2d328a8216ab4f71264dc8bb47f3a3f33e8da266", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Open_Public_License", "2d328a8216ab4f71264dc8bb47f3a3f33e8da266", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Open_Public_License", "2d328a8216ab4f71264dc8bb47f3a3f33e8da266", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Open_Public_License", "cb4b0b31f46f10cba3184639c08ea0d3455a360f", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Open_Public_License", "cb4b0b31f46f10cba3184639c08ea0d3455a360f", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Open_Public_License", "cb4b0b31f46f10cba3184639c08ea0d3455a360f", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Open_Public_License", "cb4b0b31f46f10cba3184639c08ea0d3455a360f", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -4690,13 +5078,13 @@ static SpdxLicenseList createList() .seeAlso( "http://www.osetfoundation.org/public-license" ) .seeAlso( "https://opensource.org/licenses/OPL-2.1" ) - .urlInfo( "http://osetfoundation.org/public-license", "1e691c9f74d3e1cff04d7ed950835f2964835352", "text/html", true, false ) - .urlInfo( "http://www.osetfoundation.org/public-license", "1e691c9f74d3e1cff04d7ed950835f2964835352", "text/html", true, false ) - .urlInfo( "https://www.osetfoundation.org/public-license", "1e691c9f74d3e1cff04d7ed950835f2964835352", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/OPL-2.1", "17913c84a49d477ead2e218716a44690301c32ff", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/OPL-2.1", "17913c84a49d477ead2e218716a44690301c32ff", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/OPL-2.1", "17913c84a49d477ead2e218716a44690301c32ff", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/OPL-2.1", "17913c84a49d477ead2e218716a44690301c32ff", "text/html", true, true ) + .urlInfo( "http://osetfoundation.org/public-license", "77e788702ad7b34ccc822a6c41b4021fc4ba68c0", "text/html", true, false ) + .urlInfo( "http://www.osetfoundation.org/public-license", "77e788702ad7b34ccc822a6c41b4021fc4ba68c0", "text/html", true, false ) + .urlInfo( "https://www.osetfoundation.org/public-license", "77e788702ad7b34ccc822a6c41b4021fc4ba68c0", "text/html", true, false ) + .urlInfo( "http://opensource.org/licenses/OPL-2.1", "3abf914cd1d74443540f2758324d6c0cef89c8cc", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/OPL-2.1", "3abf914cd1d74443540f2758324d6c0cef89c8cc", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/OPL-2.1", "3abf914cd1d74443540f2758324d6c0cef89c8cc", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/OPL-2.1", "3abf914cd1d74443540f2758324d6c0cef89c8cc", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -4710,10 +5098,10 @@ static SpdxLicenseList createList() .licenseId( "OSL-1.0" ) .seeAlso( "https://opensource.org/licenses/OSL-1.0" ) - .urlInfo( "http://opensource.org/licenses/OSL-1.0", "07e1ae0886993c2b59f8d4292636a52e9734dfb3", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/OSL-1.0", "07e1ae0886993c2b59f8d4292636a52e9734dfb3", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/OSL-1.0", "07e1ae0886993c2b59f8d4292636a52e9734dfb3", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/OSL-1.0", "07e1ae0886993c2b59f8d4292636a52e9734dfb3", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/OSL-1.0", "4e314550f233137ff794d989f5910ce239b911f7", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/OSL-1.0", "4e314550f233137ff794d989f5910ce239b911f7", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/OSL-1.0", "4e314550f233137ff794d989f5910ce239b911f7", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/OSL-1.0", "4e314550f233137ff794d989f5910ce239b911f7", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -4727,7 +5115,10 @@ static SpdxLicenseList createList() .licenseId( "OSL-1.1" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/OSL1.1" ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/OSL1.1", null, null, false, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/OSL1.1", "31807dcec6a012bc946d634200c5cea56a37304a", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/OSL1.1", "31807dcec6a012bc946d634200c5cea56a37304a", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/OSL1.1", "31807dcec6a012bc946d634200c5cea56a37304a", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/OSL1.1", "31807dcec6a012bc946d634200c5cea56a37304a", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -4754,10 +5145,10 @@ static SpdxLicenseList createList() .seeAlso( "http://web.archive.org/web/20050212003940/http://www.rosenlaw.com/osl21.htm" ) .seeAlso( "https://opensource.org/licenses/OSL-2.1" ) - .urlInfo( "http://opensource.org/licenses/OSL-2.1", "5121c310d411133c1449bc08f9c78ded29f6bb39", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/OSL-2.1", "5121c310d411133c1449bc08f9c78ded29f6bb39", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/OSL-2.1", "5121c310d411133c1449bc08f9c78ded29f6bb39", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/OSL-2.1", "5121c310d411133c1449bc08f9c78ded29f6bb39", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/OSL-2.1", "b42a3577ba5d2ce662ecc77d93999d8fb5b127cc", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/OSL-2.1", "b42a3577ba5d2ce662ecc77d93999d8fb5b127cc", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/OSL-2.1", "b42a3577ba5d2ce662ecc77d93999d8fb5b127cc", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/OSL-2.1", "b42a3577ba5d2ce662ecc77d93999d8fb5b127cc", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -4772,10 +5163,10 @@ static SpdxLicenseList createList() .seeAlso( "https://web.archive.org/web/20120101081418/http://rosenlaw.com:80/OSL3.0.htm" ) .seeAlso( "https://opensource.org/licenses/OSL-3.0" ) - .urlInfo( "http://opensource.org/licenses/OSL-3.0", "b79ea4d57096ffb9b059ec42e9aff6b2d4e54558", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/OSL-3.0", "b79ea4d57096ffb9b059ec42e9aff6b2d4e54558", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/OSL-3.0", "b79ea4d57096ffb9b059ec42e9aff6b2d4e54558", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/OSL-3.0", "b79ea4d57096ffb9b059ec42e9aff6b2d4e54558", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/OSL-3.0", "9da420e5815662ff8685bc7904baf02e35bf5e0b", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/OSL-3.0", "9da420e5815662ff8685bc7904baf02e35bf5e0b", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/OSL-3.0", "9da420e5815662ff8685bc7904baf02e35bf5e0b", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/OSL-3.0", "9da420e5815662ff8685bc7904baf02e35bf5e0b", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -4826,10 +5217,10 @@ static SpdxLicenseList createList() .urlInfo( "http://www.php.net/license/3_0.txt", "b568098fecaddcee5626728c874c3d3bebcbb83f", "text/plain", true, false ) .urlInfo( "https://php.net/license/3_0.txt", "b568098fecaddcee5626728c874c3d3bebcbb83f", "text/plain", true, false ) .urlInfo( "https://www.php.net/license/3_0.txt", "b568098fecaddcee5626728c874c3d3bebcbb83f", "text/plain", true, false ) - .urlInfo( "http://opensource.org/licenses/PHP-3.0", "0341bb4fa80e2609d944193d73271b9081183cc6", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/PHP-3.0", "0341bb4fa80e2609d944193d73271b9081183cc6", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/PHP-3.0", "0341bb4fa80e2609d944193d73271b9081183cc6", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/PHP-3.0", "0341bb4fa80e2609d944193d73271b9081183cc6", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/PHP-3.0", "93c68f06d0a7a0da92b01b3bed063b537166d04b", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/PHP-3.0", "93c68f06d0a7a0da92b01b3bed063b537166d04b", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/PHP-3.0", "93c68f06d0a7a0da92b01b3bed063b537166d04b", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/PHP-3.0", "93c68f06d0a7a0da92b01b3bed063b537166d04b", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -4859,10 +5250,10 @@ static SpdxLicenseList createList() .licenseId( "Plexus" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License", "35f378214105a76a594e6f0c66d9489d3f296bf9", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License", "35f378214105a76a594e6f0c66d9489d3f296bf9", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License", "35f378214105a76a594e6f0c66d9489d3f296bf9", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License", "35f378214105a76a594e6f0c66d9489d3f296bf9", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License", "f50c771b67fe86c08ce0932e2bb67290ce29c3a0", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License", "f50c771b67fe86c08ce0932e2bb67290ce29c3a0", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License", "f50c771b67fe86c08ce0932e2bb67290ce29c3a0", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License", "f50c771b67fe86c08ce0932e2bb67290ce29c3a0", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -4876,14 +5267,14 @@ static SpdxLicenseList createList() .seeAlso( "http://www.postgresql.org/about/licence" ) .seeAlso( "https://opensource.org/licenses/PostgreSQL" ) - .urlInfo( "http://postgresql.org/about/licence", "87dcdb9923b06e8d9d5cfa3c1c157fbcadcef3ac", "text/html", true, false ) - .urlInfo( "http://www.postgresql.org/about/licence", "87dcdb9923b06e8d9d5cfa3c1c157fbcadcef3ac", "text/html", true, false ) - .urlInfo( "https://postgresql.org/about/licence", "87dcdb9923b06e8d9d5cfa3c1c157fbcadcef3ac", "text/html", true, false ) - .urlInfo( "https://www.postgresql.org/about/licence", "87dcdb9923b06e8d9d5cfa3c1c157fbcadcef3ac", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/PostgreSQL", "6f612724f58a7bdcb2ec4a4b0d93e1681d50b7ab", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/PostgreSQL", "6f612724f58a7bdcb2ec4a4b0d93e1681d50b7ab", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/PostgreSQL", "6f612724f58a7bdcb2ec4a4b0d93e1681d50b7ab", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/PostgreSQL", "6f612724f58a7bdcb2ec4a4b0d93e1681d50b7ab", "text/html", true, true ) + .urlInfo( "http://postgresql.org/about/licence", "8fe3616ebbaa6f0880dfc7201b28251d8a89e042", "text/html", true, false ) + .urlInfo( "http://www.postgresql.org/about/licence", "8fe3616ebbaa6f0880dfc7201b28251d8a89e042", "text/html", true, false ) + .urlInfo( "https://postgresql.org/about/licence", "8fe3616ebbaa6f0880dfc7201b28251d8a89e042", "text/html", true, false ) + .urlInfo( "https://www.postgresql.org/about/licence", "8fe3616ebbaa6f0880dfc7201b28251d8a89e042", "text/html", true, false ) + .urlInfo( "http://opensource.org/licenses/PostgreSQL", "f02b9183b2efdec12ba7b1ee7c1f386356e3693a", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/PostgreSQL", "f02b9183b2efdec12ba7b1ee7c1f386356e3693a", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/PostgreSQL", "f02b9183b2efdec12ba7b1ee7c1f386356e3693a", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/PostgreSQL", "f02b9183b2efdec12ba7b1ee7c1f386356e3693a", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -4897,10 +5288,10 @@ static SpdxLicenseList createList() .licenseId( "Python-2.0" ) .seeAlso( "https://opensource.org/licenses/Python-2.0" ) - .urlInfo( "http://opensource.org/licenses/Python-2.0", "45e658b0a40610df5f285b0b2bf73cf33fbc5196", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/Python-2.0", "45e658b0a40610df5f285b0b2bf73cf33fbc5196", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/Python-2.0", "45e658b0a40610df5f285b0b2bf73cf33fbc5196", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/Python-2.0", "45e658b0a40610df5f285b0b2bf73cf33fbc5196", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/Python-2.0", "156935145768e0f81d179b4ae7e87165d9abfab8", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/Python-2.0", "156935145768e0f81d179b4ae7e87165d9abfab8", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/Python-2.0", "156935145768e0f81d179b4ae7e87165d9abfab8", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/Python-2.0", "156935145768e0f81d179b4ae7e87165d9abfab8", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -4915,10 +5306,10 @@ static SpdxLicenseList createList() .seeAlso( "http://doc.qt.nokia.com/3.3/license.html" ) .seeAlso( "https://opensource.org/licenses/QPL-1.0" ) - .urlInfo( "http://opensource.org/licenses/QPL-1.0", "84b0dc463e03b5752052da8a64a44720e75971a3", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/QPL-1.0", "84b0dc463e03b5752052da8a64a44720e75971a3", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/QPL-1.0", "84b0dc463e03b5752052da8a64a44720e75971a3", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/QPL-1.0", "84b0dc463e03b5752052da8a64a44720e75971a3", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/QPL-1.0", "0834befe868efb1cc2e3614ac22b3f5c1c23ae4a", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/QPL-1.0", "0834befe868efb1cc2e3614ac22b3f5c1c23ae4a", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/QPL-1.0", "0834befe868efb1cc2e3614ac22b3f5c1c23ae4a", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/QPL-1.0", "0834befe868efb1cc2e3614ac22b3f5c1c23ae4a", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -4931,7 +5322,10 @@ static SpdxLicenseList createList() .licenseId( "Qhull" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Qhull" ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Qhull", null, null, false, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Qhull", "df46e4c9d0e38d78a7e70f93622e3662f18ec285", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Qhull", "df46e4c9d0e38d78a7e70f93622e3662f18ec285", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Qhull", "df46e4c9d0e38d78a7e70f93622e3662f18ec285", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Qhull", "df46e4c9d0e38d78a7e70f93622e3662f18ec285", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -4958,10 +5352,10 @@ static SpdxLicenseList createList() .licenseId( "RPL-1.1" ) .seeAlso( "https://opensource.org/licenses/RPL-1.1" ) - .urlInfo( "http://opensource.org/licenses/RPL-1.1", "31c8efde450d7460b2a985922861f065a338767e", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/RPL-1.1", "31c8efde450d7460b2a985922861f065a338767e", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/RPL-1.1", "31c8efde450d7460b2a985922861f065a338767e", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/RPL-1.1", "31c8efde450d7460b2a985922861f065a338767e", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/RPL-1.1", "34007674968ba1b06171f2e6448bc6c361840e2e", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/RPL-1.1", "34007674968ba1b06171f2e6448bc6c361840e2e", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/RPL-1.1", "34007674968ba1b06171f2e6448bc6c361840e2e", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/RPL-1.1", "34007674968ba1b06171f2e6448bc6c361840e2e", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -4974,10 +5368,10 @@ static SpdxLicenseList createList() .licenseId( "RPL-1.5" ) .seeAlso( "https://opensource.org/licenses/RPL-1.5" ) - .urlInfo( "http://opensource.org/licenses/RPL-1.5", "21f48d9efd416e98d822345d308e40fccd7dbb17", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/RPL-1.5", "21f48d9efd416e98d822345d308e40fccd7dbb17", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/RPL-1.5", "21f48d9efd416e98d822345d308e40fccd7dbb17", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/RPL-1.5", "21f48d9efd416e98d822345d308e40fccd7dbb17", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/RPL-1.5", "b61c1bd2f64d111ce6dd812d47c9b454d9ab7de8", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/RPL-1.5", "b61c1bd2f64d111ce6dd812d47c9b454d9ab7de8", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/RPL-1.5", "b61c1bd2f64d111ce6dd812d47c9b454d9ab7de8", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/RPL-1.5", "b61c1bd2f64d111ce6dd812d47c9b454d9ab7de8", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -4992,10 +5386,10 @@ static SpdxLicenseList createList() .seeAlso( "https://helixcommunity.org/content/rpsl" ) .seeAlso( "https://opensource.org/licenses/RPSL-1.0" ) - .urlInfo( "http://opensource.org/licenses/RPSL-1.0", "e922ddc468eeb469104804a989b955deb9e35e22", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/RPSL-1.0", "e922ddc468eeb469104804a989b955deb9e35e22", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/RPSL-1.0", "e922ddc468eeb469104804a989b955deb9e35e22", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/RPSL-1.0", "e922ddc468eeb469104804a989b955deb9e35e22", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/RPSL-1.0", "c288846f50aea248ff3cc6f236902bddea441445", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/RPSL-1.0", "c288846f50aea248ff3cc6f236902bddea441445", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/RPSL-1.0", "c288846f50aea248ff3cc6f236902bddea441445", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/RPSL-1.0", "c288846f50aea248ff3cc6f236902bddea441445", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -5023,10 +5417,10 @@ static SpdxLicenseList createList() .seeAlso( "http://wayback.archive.org/web/20060715140826/http://www.risource.org/RPL/RPL-1.0A.shtml" ) .seeAlso( "https://opensource.org/licenses/RSCPL" ) - .urlInfo( "http://opensource.org/licenses/RSCPL", "54e1a40491e6792e1cbd86f8a6e17cbdaf8982c7", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/RSCPL", "54e1a40491e6792e1cbd86f8a6e17cbdaf8982c7", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/RSCPL", "54e1a40491e6792e1cbd86f8a6e17cbdaf8982c7", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/RSCPL", "54e1a40491e6792e1cbd86f8a6e17cbdaf8982c7", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/RSCPL", "da1b642ae80c4837d8a423b4b4ca8bc8e53bfb59", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/RSCPL", "da1b642ae80c4837d8a423b4b4ca8bc8e53bfb59", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/RSCPL", "da1b642ae80c4837d8a423b4b4ca8bc8e53bfb59", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/RSCPL", "da1b642ae80c4837d8a423b4b4ca8bc8e53bfb59", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -5039,10 +5433,10 @@ static SpdxLicenseList createList() .licenseId( "Rdisc" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Rdisc_License" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Rdisc_License", "85ee6bac6c9d13954f090081211c9348bedd634c", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Rdisc_License", "85ee6bac6c9d13954f090081211c9348bedd634c", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Rdisc_License", "85ee6bac6c9d13954f090081211c9348bedd634c", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Rdisc_License", "85ee6bac6c9d13954f090081211c9348bedd634c", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Rdisc_License", "ed7eb23ca6a2897407c60e8ff92e326428deb803", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Rdisc_License", "ed7eb23ca6a2897407c60e8ff92e326428deb803", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Rdisc_License", "ed7eb23ca6a2897407c60e8ff92e326428deb803", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Rdisc_License", "ed7eb23ca6a2897407c60e8ff92e326428deb803", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -5135,10 +5529,10 @@ static SpdxLicenseList createList() .urlInfo( "http://www.openoffice.org/licenses/sissl_license.html", "d9c2f90c94811005c80c24e2b08349be0e5ea527", "text/html", true, false ) .urlInfo( "https://openoffice.org/licenses/sissl_license.html", "d9c2f90c94811005c80c24e2b08349be0e5ea527", "text/html", true, false ) .urlInfo( "https://www.openoffice.org/licenses/sissl_license.html", "d9c2f90c94811005c80c24e2b08349be0e5ea527", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/SISSL", "53e6128d0eaeedf9149e1047e194147137eeb1e5", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/SISSL", "53e6128d0eaeedf9149e1047e194147137eeb1e5", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/SISSL", "53e6128d0eaeedf9149e1047e194147137eeb1e5", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/SISSL", "53e6128d0eaeedf9149e1047e194147137eeb1e5", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/SISSL", "c71b77c3d7f17c86d03b966cb86f800c595fdb95", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/SISSL", "c71b77c3d7f17c86d03b966cb86f800c595fdb95", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/SISSL", "c71b77c3d7f17c86d03b966cb86f800c595fdb95", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/SISSL", "c71b77c3d7f17c86d03b966cb86f800c595fdb95", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -5197,10 +5591,10 @@ static SpdxLicenseList createList() .licenseId( "SNIA" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/SNIA_Public_License" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/SNIA_Public_License", "d1cd19635cc1b9092aa42d404ccd3a82bcb76a4a", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/SNIA_Public_License", "d1cd19635cc1b9092aa42d404ccd3a82bcb76a4a", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/SNIA_Public_License", "d1cd19635cc1b9092aa42d404ccd3a82bcb76a4a", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/SNIA_Public_License", "d1cd19635cc1b9092aa42d404ccd3a82bcb76a4a", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/SNIA_Public_License", "fb6eab8505c7cbb80424dd411870302f0ab34f39", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/SNIA_Public_License", "fb6eab8505c7cbb80424dd411870302f0ab34f39", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/SNIA_Public_License", "fb6eab8505c7cbb80424dd411870302f0ab34f39", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/SNIA_Public_License", "fb6eab8505c7cbb80424dd411870302f0ab34f39", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -5214,10 +5608,10 @@ static SpdxLicenseList createList() .licenseId( "SPL-1.0" ) .seeAlso( "https://opensource.org/licenses/SPL-1.0" ) - .urlInfo( "http://opensource.org/licenses/SPL-1.0", "9c7223b48e63c8d2c04176cc52cdc02347fdeda4", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/SPL-1.0", "9c7223b48e63c8d2c04176cc52cdc02347fdeda4", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/SPL-1.0", "9c7223b48e63c8d2c04176cc52cdc02347fdeda4", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/SPL-1.0", "9c7223b48e63c8d2c04176cc52cdc02347fdeda4", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/SPL-1.0", "86b253647f6f49a17ff49f5692ae2972f1086fce", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/SPL-1.0", "86b253647f6f49a17ff49f5692ae2972f1086fce", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/SPL-1.0", "86b253647f6f49a17ff49f5692ae2972f1086fce", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/SPL-1.0", "86b253647f6f49a17ff49f5692ae2972f1086fce", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -5230,10 +5624,10 @@ static SpdxLicenseList createList() .licenseId( "SWL" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/SWL" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/SWL", "20b956202a3f20ca01fd53e6910448a7783f74c3", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/SWL", "20b956202a3f20ca01fd53e6910448a7783f74c3", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/SWL", "20b956202a3f20ca01fd53e6910448a7783f74c3", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/SWL", "20b956202a3f20ca01fd53e6910448a7783f74c3", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/SWL", "8e8f3b2a9fd241df8fa624581f6b69ca155e388d", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/SWL", "8e8f3b2a9fd241df8fa624581f6b69ca155e388d", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/SWL", "8e8f3b2a9fd241df8fa624581f6b69ca155e388d", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/SWL", "8e8f3b2a9fd241df8fa624581f6b69ca155e388d", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -5246,10 +5640,10 @@ static SpdxLicenseList createList() .licenseId( "Saxpath" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Saxpath_License" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Saxpath_License", "4eb370c421ef9e2bbd81c12f0bca1e0c216d25f2", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Saxpath_License", "4eb370c421ef9e2bbd81c12f0bca1e0c216d25f2", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Saxpath_License", "4eb370c421ef9e2bbd81c12f0bca1e0c216d25f2", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Saxpath_License", "4eb370c421ef9e2bbd81c12f0bca1e0c216d25f2", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Saxpath_License", "0b6034499b7fcfea80c6ef0b0782b83a876c8a85", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Saxpath_License", "0b6034499b7fcfea80c6ef0b0782b83a876c8a85", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Saxpath_License", "0b6034499b7fcfea80c6ef0b0782b83a876c8a85", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Saxpath_License", "0b6034499b7fcfea80c6ef0b0782b83a876c8a85", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -5279,10 +5673,8 @@ static SpdxLicenseList createList() .urlInfo( "http://proofpoint.com/sites/default/files/sendmail-license.pdf", "2f0605b00214d85158c4bc503e72c02033d09916", "application/pdf", true, false ) .urlInfo( "http://web.archive.org/web/20181003101040id_/http://proofpoint.com/sites/default/files/sendmail-license.pdf", "2f0605b00214d85158c4bc503e72c02033d09916", "application/pdf", true, false ) - .urlInfo( "http://web.archive.org/web/20181003101040id_/http://www.proofpoint.com/sites/default/files/sendmail-license.pdf", "2f0605b00214d85158c4bc503e72c02033d09916", "application/pdf", true, false ) .urlInfo( "http://www.proofpoint.com/sites/default/files/sendmail-license.pdf", "2f0605b00214d85158c4bc503e72c02033d09916", "application/pdf", true, false ) .urlInfo( "https://proofpoint.com/sites/default/files/sendmail-license.pdf", "2f0605b00214d85158c4bc503e72c02033d09916", "application/pdf", true, false ) - .urlInfo( "https://web.archive.org/web/20181003101040id_/https://proofpoint.com/sites/default/files/sendmail-license.pdf", "2f0605b00214d85158c4bc503e72c02033d09916", "application/pdf", true, false ) .urlInfo( "https://web.archive.org/web/20181003101040id_/https://www.proofpoint.com/sites/default/files/sendmail-license.pdf", "2f0605b00214d85158c4bc503e72c02033d09916", "application/pdf", true, false ) .urlInfo( "https://www.proofpoint.com/sites/default/files/sendmail-license.pdf", "2f0605b00214d85158c4bc503e72c02033d09916", "application/pdf", true, false ) .isOsiApproved( false ) @@ -5297,10 +5689,10 @@ static SpdxLicenseList createList() .licenseId( "SimPL-2.0" ) .seeAlso( "https://opensource.org/licenses/SimPL-2.0" ) - .urlInfo( "http://opensource.org/licenses/SimPL-2.0", "8bc4fe5d96e98310343479ee20479d7aa377205b", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/SimPL-2.0", "8bc4fe5d96e98310343479ee20479d7aa377205b", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/SimPL-2.0", "8bc4fe5d96e98310343479ee20479d7aa377205b", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/SimPL-2.0", "8bc4fe5d96e98310343479ee20479d7aa377205b", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/SimPL-2.0", "af8be541951c6b28afc2a96398135bf898998417", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/SimPL-2.0", "af8be541951c6b28afc2a96398135bf898998417", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/SimPL-2.0", "af8be541951c6b28afc2a96398135bf898998417", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/SimPL-2.0", "af8be541951c6b28afc2a96398135bf898998417", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -5314,10 +5706,10 @@ static SpdxLicenseList createList() .licenseId( "Sleepycat" ) .seeAlso( "https://opensource.org/licenses/Sleepycat" ) - .urlInfo( "http://opensource.org/licenses/Sleepycat", "4ca163f21d883377aafa49bad2f4aa98bc1409c1", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/Sleepycat", "4ca163f21d883377aafa49bad2f4aa98bc1409c1", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/Sleepycat", "4ca163f21d883377aafa49bad2f4aa98bc1409c1", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/Sleepycat", "4ca163f21d883377aafa49bad2f4aa98bc1409c1", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/Sleepycat", "a2612720cb52ed4c913e12821bb8915ea40a49e6", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/Sleepycat", "a2612720cb52ed4c913e12821bb8915ea40a49e6", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/Sleepycat", "a2612720cb52ed4c913e12821bb8915ea40a49e6", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/Sleepycat", "a2612720cb52ed4c913e12821bb8915ea40a49e6", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -5330,10 +5722,10 @@ static SpdxLicenseList createList() .licenseId( "Spencer-86" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", "91027d9bb68b221d1db9728c30fea469f2e776ff", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", "91027d9bb68b221d1db9728c30fea469f2e776ff", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", "91027d9bb68b221d1db9728c30fea469f2e776ff", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", "91027d9bb68b221d1db9728c30fea469f2e776ff", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", "130fcd36be8fe164eb68d951ba73ae3efdb846da", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", "130fcd36be8fe164eb68d951ba73ae3efdb846da", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", "130fcd36be8fe164eb68d951ba73ae3efdb846da", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", "130fcd36be8fe164eb68d951ba73ae3efdb846da", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -5346,10 +5738,10 @@ static SpdxLicenseList createList() .licenseId( "Spencer-94" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", "91027d9bb68b221d1db9728c30fea469f2e776ff", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", "91027d9bb68b221d1db9728c30fea469f2e776ff", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", "91027d9bb68b221d1db9728c30fea469f2e776ff", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", "91027d9bb68b221d1db9728c30fea469f2e776ff", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", "130fcd36be8fe164eb68d951ba73ae3efdb846da", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", "130fcd36be8fe164eb68d951ba73ae3efdb846da", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", "130fcd36be8fe164eb68d951ba73ae3efdb846da", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", "130fcd36be8fe164eb68d951ba73ae3efdb846da", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -5362,9 +5754,7 @@ static SpdxLicenseList createList() .licenseId( "Spencer-99" ) .seeAlso( "http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c" ) - .urlInfo( "http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c", "f7c49d5cdf7ca5999cff2ee8f140c3cbfa4b6bbc", "text/x-c", true, false ) - .urlInfo( "https://opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c", "f7c49d5cdf7ca5999cff2ee8f140c3cbfa4b6bbc", "text/x-c", true, false ) - .urlInfo( "https://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c", "f7c49d5cdf7ca5999cff2ee8f140c3cbfa4b6bbc", "text/x-c", true, false ) + .urlInfo( "http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c", null, null, false, false ) .isOsiApproved( false ) .build() ); @@ -5401,6 +5791,20 @@ static SpdxLicenseList createList() .build() ); + builder.license( SpdxLicenseInfo.builder() + .reference( "./TAPR-OHL-1.0.html" ) + .isDeprecatedLicenseId( false ) + .detailsUrl( "http://spdx.org/licenses/TAPR-OHL-1.0.json" ) + .name( "TAPR Open Hardware License v1.0" ) + .licenseId( "TAPR-OHL-1.0" ) + .seeAlso( "https://www.tapr.org/OHL" ) + + .urlInfo( "http://www.tapr.org/OHL", "c9cba9d51f8396452294954cdff210240cff931e", "text/html", true, false ) + .urlInfo( "https://www.tapr.org/OHL", "c9cba9d51f8396452294954cdff210240cff931e", "text/html", true, false ) + .isOsiApproved( false ) + .build() + ); + builder.license( SpdxLicenseInfo.builder() .reference( "./TCL.html" ) .isDeprecatedLicenseId( false ) @@ -5410,8 +5814,14 @@ static SpdxLicenseList createList() .seeAlso( "http://www.tcl.tk/software/tcltk/license.html" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/TCL" ) - .urlInfo( "http://www.tcl.tk/software/tcltk/license.html", null, null, false, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/TCL", null, null, false, true ) + .urlInfo( "http://tcl.tk/software/tcltk/license.html", "00499b931c93319beea913277403178316f62b01", "text/html", true, true ) + .urlInfo( "http://www.tcl.tk/software/tcltk/license.html", "00499b931c93319beea913277403178316f62b01", "text/html", true, true ) + .urlInfo( "https://tcl.tk/software/tcltk/license.html", "00499b931c93319beea913277403178316f62b01", "text/html", true, true ) + .urlInfo( "https://www.tcl.tk/software/tcltk/license.html", "00499b931c93319beea913277403178316f62b01", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/TCL", "344bc2a95f4a4908c643babe16d62f4ef9700a0a", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/TCL", "344bc2a95f4a4908c643babe16d62f4ef9700a0a", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/TCL", "344bc2a95f4a4908c643babe16d62f4ef9700a0a", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/TCL", "344bc2a95f4a4908c643babe16d62f4ef9700a0a", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -5453,10 +5863,7 @@ static SpdxLicenseList createList() .licenseId( "TORQUE-1.1" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/TORQUEv1.1" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/TORQUEv1.1", "47e7532a312f63da166906c2bba2c5e14baf819c", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/TORQUEv1.1", "47e7532a312f63da166906c2bba2c5e14baf819c", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/TORQUEv1.1", "47e7532a312f63da166906c2bba2c5e14baf819c", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/TORQUEv1.1", "47e7532a312f63da166906c2bba2c5e14baf819c", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/TORQUEv1.1", null, null, false, true ) .isOsiApproved( false ) .build() ); @@ -5469,10 +5876,10 @@ static SpdxLicenseList createList() .licenseId( "TOSL" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/TOSL" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/TOSL", "e7986adc7767b91e7a6db327bf835a736c2c222f", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/TOSL", "e7986adc7767b91e7a6db327bf835a736c2c222f", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/TOSL", "e7986adc7767b91e7a6db327bf835a736c2c222f", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/TOSL", "e7986adc7767b91e7a6db327bf835a736c2c222f", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/TOSL", "3ad0c21abb7f1caef2e40e6e035df4077333d1d3", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/TOSL", "3ad0c21abb7f1caef2e40e6e035df4077333d1d3", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/TOSL", "3ad0c21abb7f1caef2e40e6e035df4077333d1d3", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/TOSL", "3ad0c21abb7f1caef2e40e6e035df4077333d1d3", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -5508,10 +5915,10 @@ static SpdxLicenseList createList() .licenseId( "UPL-1.0" ) .seeAlso( "https://opensource.org/licenses/UPL" ) - .urlInfo( "http://opensource.org/licenses/UPL", "c28eb75b735673b6ed1c8e0a86ec903cfe51847d", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/UPL", "c28eb75b735673b6ed1c8e0a86ec903cfe51847d", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/UPL", "c28eb75b735673b6ed1c8e0a86ec903cfe51847d", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/UPL", "c28eb75b735673b6ed1c8e0a86ec903cfe51847d", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/UPL", "8cdb2dda66095220c953ae7ad85ab705eb910562", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/UPL", "8cdb2dda66095220c953ae7ad85ab705eb910562", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/UPL", "8cdb2dda66095220c953ae7ad85ab705eb910562", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/UPL", "8cdb2dda66095220c953ae7ad85ab705eb910562", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -5535,9 +5942,9 @@ static SpdxLicenseList createList() .licenseId( "Unicode-DFS-2016" ) .seeAlso( "http://www.unicode.org/copyright.html" ) - .urlInfo( "http://unicode.org/copyright.html", "14a648b5ae2d7ae366f01f656dd71d33b9ac4ee0", "text/html", true, false ) - .urlInfo( "http://www.unicode.org/copyright.html", "14a648b5ae2d7ae366f01f656dd71d33b9ac4ee0", "text/html", true, false ) - .urlInfo( "https://unicode.org/copyright.html", "14a648b5ae2d7ae366f01f656dd71d33b9ac4ee0", "text/html", true, false ) + .urlInfo( "http://unicode.org/copyright.html", "616802fe8277aa08324ee4f77d9f57bddb1b4f1b", "text/html", true, false ) + .urlInfo( "http://www.unicode.org/copyright.html", "616802fe8277aa08324ee4f77d9f57bddb1b4f1b", "text/html", true, false ) + .urlInfo( "https://unicode.org/copyright.html", "616802fe8277aa08324ee4f77d9f57bddb1b4f1b", "text/html", true, false ) .isOsiApproved( false ) .build() ); @@ -5550,9 +5957,9 @@ static SpdxLicenseList createList() .licenseId( "Unicode-TOU" ) .seeAlso( "http://www.unicode.org/copyright.html" ) - .urlInfo( "http://unicode.org/copyright.html", "14a648b5ae2d7ae366f01f656dd71d33b9ac4ee0", "text/html", true, false ) - .urlInfo( "http://www.unicode.org/copyright.html", "14a648b5ae2d7ae366f01f656dd71d33b9ac4ee0", "text/html", true, false ) - .urlInfo( "https://unicode.org/copyright.html", "14a648b5ae2d7ae366f01f656dd71d33b9ac4ee0", "text/html", true, false ) + .urlInfo( "http://unicode.org/copyright.html", "616802fe8277aa08324ee4f77d9f57bddb1b4f1b", "text/html", true, false ) + .urlInfo( "http://www.unicode.org/copyright.html", "616802fe8277aa08324ee4f77d9f57bddb1b4f1b", "text/html", true, false ) + .urlInfo( "https://unicode.org/copyright.html", "616802fe8277aa08324ee4f77d9f57bddb1b4f1b", "text/html", true, false ) .isOsiApproved( false ) .build() ); @@ -5582,7 +5989,10 @@ static SpdxLicenseList createList() .licenseId( "VOSTROM" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/VOSTROM" ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/VOSTROM", null, null, false, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/VOSTROM", "b0ca9206e99414f2d226278eb6b43c4249e1162d", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/VOSTROM", "b0ca9206e99414f2d226278eb6b43c4249e1162d", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/VOSTROM", "b0ca9206e99414f2d226278eb6b43c4249e1162d", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/VOSTROM", "b0ca9206e99414f2d226278eb6b43c4249e1162d", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -5595,10 +6005,10 @@ static SpdxLicenseList createList() .licenseId( "VSL-1.0" ) .seeAlso( "https://opensource.org/licenses/VSL-1.0" ) - .urlInfo( "http://opensource.org/licenses/VSL-1.0", "8eb986af8a2ff1e26ace80a236e6a72d58f5eb1c", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/VSL-1.0", "8eb986af8a2ff1e26ace80a236e6a72d58f5eb1c", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/VSL-1.0", "8eb986af8a2ff1e26ace80a236e6a72d58f5eb1c", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/VSL-1.0", "8eb986af8a2ff1e26ace80a236e6a72d58f5eb1c", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/VSL-1.0", "30566b653cd4b94e1885055dcc9024a3cfac3e4b", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/VSL-1.0", "30566b653cd4b94e1885055dcc9024a3cfac3e4b", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/VSL-1.0", "30566b653cd4b94e1885055dcc9024a3cfac3e4b", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/VSL-1.0", "30566b653cd4b94e1885055dcc9024a3cfac3e4b", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -5632,10 +6042,10 @@ static SpdxLicenseList createList() .urlInfo( "http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html", "e9caaa14c2ed4bfe41608e3d865811423707bbe5", "text/html", true, false ) .urlInfo( "https://w3.org/Consortium/Legal/2002/copyright-software-20021231.html", "e9caaa14c2ed4bfe41608e3d865811423707bbe5", "text/html", true, false ) .urlInfo( "https://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html", "e9caaa14c2ed4bfe41608e3d865811423707bbe5", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/W3C", "b80431e123c8017954c2eb15438d7468b775b71a", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/W3C", "b80431e123c8017954c2eb15438d7468b775b71a", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/W3C", "b80431e123c8017954c2eb15438d7468b775b71a", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/W3C", "b80431e123c8017954c2eb15438d7468b775b71a", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/W3C", "9957c74acaf9412fcab9f768382a879bf6f5bd9a", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/W3C", "9957c74acaf9412fcab9f768382a879bf6f5bd9a", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/W3C", "9957c74acaf9412fcab9f768382a879bf6f5bd9a", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/W3C", "9957c74acaf9412fcab9f768382a879bf6f5bd9a", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -5694,10 +6104,10 @@ static SpdxLicenseList createList() .licenseId( "Watcom-1.0" ) .seeAlso( "https://opensource.org/licenses/Watcom-1.0" ) - .urlInfo( "http://opensource.org/licenses/Watcom-1.0", "4f0fb4a3cd8f3fe680f39efe3c7c04808fb95e39", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/Watcom-1.0", "4f0fb4a3cd8f3fe680f39efe3c7c04808fb95e39", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/Watcom-1.0", "4f0fb4a3cd8f3fe680f39efe3c7c04808fb95e39", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/Watcom-1.0", "4f0fb4a3cd8f3fe680f39efe3c7c04808fb95e39", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/Watcom-1.0", "4300d9560c127e25505e855e7ee103b378f29d6b", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/Watcom-1.0", "4300d9560c127e25505e855e7ee103b378f29d6b", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/Watcom-1.0", "4300d9560c127e25505e855e7ee103b378f29d6b", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/Watcom-1.0", "4300d9560c127e25505e855e7ee103b378f29d6b", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -5710,10 +6120,10 @@ static SpdxLicenseList createList() .licenseId( "Wsuipa" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Wsuipa" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Wsuipa", "f0b1f53b5a3e33604d9d06efe31ab82bed60d8aa", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Wsuipa", "f0b1f53b5a3e33604d9d06efe31ab82bed60d8aa", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Wsuipa", "f0b1f53b5a3e33604d9d06efe31ab82bed60d8aa", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Wsuipa", "f0b1f53b5a3e33604d9d06efe31ab82bed60d8aa", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Wsuipa", "ff7b66840ab0914bbf3ba00a284a8eca93d8b2fc", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Wsuipa", "ff7b66840ab0914bbf3ba00a284a8eca93d8b2fc", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Wsuipa", "ff7b66840ab0914bbf3ba00a284a8eca93d8b2fc", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Wsuipa", "ff7b66840ab0914bbf3ba00a284a8eca93d8b2fc", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -5760,10 +6170,8 @@ static SpdxLicenseList createList() .licenseId( "XSkat" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/XSkat_License" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/XSkat_License", "d0716c0abf0b3ff50400ea145f3c58c87fd2c7ea", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/XSkat_License", "d0716c0abf0b3ff50400ea145f3c58c87fd2c7ea", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/XSkat_License", "d0716c0abf0b3ff50400ea145f3c58c87fd2c7ea", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/XSkat_License", "d0716c0abf0b3ff50400ea145f3c58c87fd2c7ea", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/XSkat_License", "76f97550c044e523e4e850c50800295d796d3390", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/XSkat_License", "76f97550c044e523e4e850c50800295d796d3390", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -5776,7 +6184,10 @@ static SpdxLicenseList createList() .licenseId( "Xerox" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Xerox" ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Xerox", null, null, false, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Xerox", "bc96822269ec4cebf103a898c5ef433a39e9c071", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Xerox", "bc96822269ec4cebf103a898c5ef433a39e9c071", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Xerox", "bc96822269ec4cebf103a898c5ef433a39e9c071", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Xerox", "bc96822269ec4cebf103a898c5ef433a39e9c071", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -5789,10 +6200,10 @@ static SpdxLicenseList createList() .licenseId( "Xnet" ) .seeAlso( "https://opensource.org/licenses/Xnet" ) - .urlInfo( "http://opensource.org/licenses/Xnet", "87f1d18fc34d493540e470d1ea57334e1b118fe3", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/Xnet", "87f1d18fc34d493540e470d1ea57334e1b118fe3", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/Xnet", "87f1d18fc34d493540e470d1ea57334e1b118fe3", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/Xnet", "87f1d18fc34d493540e470d1ea57334e1b118fe3", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/Xnet", "10d9f75626a7edd79c98333c59555bfee7ae33f1", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/Xnet", "10d9f75626a7edd79c98333c59555bfee7ae33f1", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/Xnet", "10d9f75626a7edd79c98333c59555bfee7ae33f1", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/Xnet", "10d9f75626a7edd79c98333c59555bfee7ae33f1", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -5829,7 +6240,6 @@ static SpdxLicenseList createList() .seeAlso( "http://old.zope.org/Resources/License/ZPL-1.1" ) .urlInfo( "http://old.zope.org/Resources/License/ZPL-1.1", "545bd59cf22b63f4b3005a8e192382fadd409a80", "text/html", true, false ) - .urlInfo( "https://old.zope.org/Resources/License/ZPL-1.1", "545bd59cf22b63f4b3005a8e192382fadd409a80", "text/html", true, false ) .isOsiApproved( false ) .build() ); @@ -5845,11 +6255,10 @@ static SpdxLicenseList createList() .seeAlso( "https://opensource.org/licenses/ZPL-2.0" ) .urlInfo( "http://old.zope.org/Resources/License/ZPL-2.0", "48d0ce3d50083691ba056f531eab912596a2317d", null, true, false ) - .urlInfo( "https://old.zope.org/Resources/License/ZPL-2.0", "48d0ce3d50083691ba056f531eab912596a2317d", null, true, false ) - .urlInfo( "http://opensource.org/licenses/ZPL-2.0", "264d256fa5bf38a8d12dec9b84e294f7074c44cf", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/ZPL-2.0", "264d256fa5bf38a8d12dec9b84e294f7074c44cf", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/ZPL-2.0", "264d256fa5bf38a8d12dec9b84e294f7074c44cf", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/ZPL-2.0", "264d256fa5bf38a8d12dec9b84e294f7074c44cf", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/ZPL-2.0", "b372551d0be3732638e91d36be17da95b7578f16", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/ZPL-2.0", "b372551d0be3732638e91d36be17da95b7578f16", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/ZPL-2.0", "b372551d0be3732638e91d36be17da95b7578f16", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/ZPL-2.0", "b372551d0be3732638e91d36be17da95b7578f16", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -5864,7 +6273,6 @@ static SpdxLicenseList createList() .seeAlso( "http://old.zope.org/Resources/ZPL/" ) .urlInfo( "http://old.zope.org/Resources/ZPL/", "a1553972c0c3eb546dbf4ea440f3723136e1f772", null, true, false ) - .urlInfo( "https://old.zope.org/Resources/ZPL/", "a1553972c0c3eb546dbf4ea440f3723136e1f772", null, true, false ) .isOsiApproved( false ) .build() ); @@ -5877,10 +6285,10 @@ static SpdxLicenseList createList() .licenseId( "Zed" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Zed" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Zed", "a65d2a1bce0fd52ce63797199a58056e2bf59f6b", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Zed", "a65d2a1bce0fd52ce63797199a58056e2bf59f6b", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Zed", "a65d2a1bce0fd52ce63797199a58056e2bf59f6b", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Zed", "a65d2a1bce0fd52ce63797199a58056e2bf59f6b", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Zed", "31ffd6238e9db0b71f200c74856a16af1bf6e602", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Zed", "31ffd6238e9db0b71f200c74856a16af1bf6e602", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Zed", "31ffd6238e9db0b71f200c74856a16af1bf6e602", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Zed", "31ffd6238e9db0b71f200c74856a16af1bf6e602", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -5916,8 +6324,6 @@ static SpdxLicenseList createList() .name( "Zimbra Public License v1.4" ) .licenseId( "Zimbra-1.4" ) .seeAlso( "http://www.zimbra.com/legal/zimbra-public-license-1-4" ) - - .urlInfo( "http://www.zimbra.com/legal/zimbra-public-license-1-4", null, null, false, true ) .isOsiApproved( false ) .build() ); @@ -5934,12 +6340,11 @@ static SpdxLicenseList createList() .urlInfo( "http://www.zlib.net/zlib_license.html", "42ebabf4a661ae8b089652de5063ef17275045e7", "text/html", true, false ) .urlInfo( "http://zlib.net/zlib_license.html", "42ebabf4a661ae8b089652de5063ef17275045e7", "text/html", true, false ) - .urlInfo( "https://www.zlib.net/zlib_license.html", "42ebabf4a661ae8b089652de5063ef17275045e7", "text/html", true, false ) .urlInfo( "https://zlib.net/zlib_license.html", "42ebabf4a661ae8b089652de5063ef17275045e7", "text/html", true, false ) - .urlInfo( "http://opensource.org/licenses/Zlib", "b458ac76187129bac091a5a83dfd952c9e29f0f3", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/Zlib", "b458ac76187129bac091a5a83dfd952c9e29f0f3", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/Zlib", "b458ac76187129bac091a5a83dfd952c9e29f0f3", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/Zlib", "b458ac76187129bac091a5a83dfd952c9e29f0f3", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/Zlib", "8f86bc16ae0e29f31f80a9652b027c7f3b372209", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/Zlib", "8f86bc16ae0e29f31f80a9652b027c7f3b372209", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/Zlib", "8f86bc16ae0e29f31f80a9652b027c7f3b372209", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/Zlib", "8f86bc16ae0e29f31f80a9652b027c7f3b372209", "text/html", false, true ) .isOsiApproved( true ) .build() ); @@ -5952,8 +6357,8 @@ static SpdxLicenseList createList() .licenseId( "bzip2-1.0.5" ) .seeAlso( "http://bzip.org/1.0.5/bzip2-manual-1.0.5.html" ) - .urlInfo( "http://bzip.org/1.0.5/bzip2-manual-1.0.5.html", "9ff709aa4250af8beccd87f1395023767058d32f", "text/html", true, false ) - .urlInfo( "http://www.bzip.org/1.0.5/bzip2-manual-1.0.5.html", "9ff709aa4250af8beccd87f1395023767058d32f", "text/html", true, false ) + .urlInfo( "http://bzip.org/1.0.5/bzip2-manual-1.0.5.html", "6adfa86e0a55bdeebac130b7f6d9d145597ee949", "text/html", true, false ) + .urlInfo( "http://www.bzip.org/1.0.5/bzip2-manual-1.0.5.html", "6adfa86e0a55bdeebac130b7f6d9d145597ee949", "text/html", true, false ) .isOsiApproved( false ) .build() ); @@ -6010,10 +6415,10 @@ static SpdxLicenseList createList() .licenseId( "diffmark" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/diffmark" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/diffmark", "83fe481632822e277ac95bb4ddd00f4d7b8f699a", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/diffmark", "83fe481632822e277ac95bb4ddd00f4d7b8f699a", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/diffmark", "83fe481632822e277ac95bb4ddd00f4d7b8f699a", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/diffmark", "83fe481632822e277ac95bb4ddd00f4d7b8f699a", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/diffmark", "c0491051a1b905d7c4d1af938e9b2c440c127147", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/diffmark", "c0491051a1b905d7c4d1af938e9b2c440c127147", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/diffmark", "c0491051a1b905d7c4d1af938e9b2c440c127147", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/diffmark", "c0491051a1b905d7c4d1af938e9b2c440c127147", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -6026,7 +6431,10 @@ static SpdxLicenseList createList() .licenseId( "dvipdfm" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/dvipdfm" ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/dvipdfm", null, null, false, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/dvipdfm", "11ea8b2544554e53e3e4dbc94e236f123c082fbe", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/dvipdfm", "11ea8b2544554e53e3e4dbc94e236f123c082fbe", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/dvipdfm", "11ea8b2544554e53e3e4dbc94e236f123c082fbe", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/dvipdfm", "11ea8b2544554e53e3e4dbc94e236f123c082fbe", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -6061,10 +6469,7 @@ static SpdxLicenseList createList() .urlInfo( "http://www.egenix.com/products/eGenix.com-Public-License-1.1.0.pdf", "c49b063afe6f7390cf5603d84d4f71e23a4cbf12", "application/pdf", true, false ) .urlInfo( "https://egenix.com/products/eGenix.com-Public-License-1.1.0.pdf", "c49b063afe6f7390cf5603d84d4f71e23a4cbf12", "application/pdf", true, false ) .urlInfo( "https://www.egenix.com/products/eGenix.com-Public-License-1.1.0.pdf", "c49b063afe6f7390cf5603d84d4f71e23a4cbf12", "application/pdf", true, false ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/eGenix.com_Public_License_1.1.0", "467d7ed7c3fcb297afaa198075871d931dd93e73", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/eGenix.com_Public_License_1.1.0", "467d7ed7c3fcb297afaa198075871d931dd93e73", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/eGenix.com_Public_License_1.1.0", "467d7ed7c3fcb297afaa198075871d931dd93e73", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/eGenix.com_Public_License_1.1.0", "467d7ed7c3fcb297afaa198075871d931dd93e73", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/eGenix.com_Public_License_1.1.0", null, null, false, true ) .isOsiApproved( false ) .build() ); @@ -6092,7 +6497,10 @@ static SpdxLicenseList createList() .licenseId( "gnuplot" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Gnuplot" ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Gnuplot", null, null, false, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Gnuplot", "ea5f748372b5d14642ce2b1c2f901c18a8cc9c3a", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Gnuplot", "ea5f748372b5d14642ce2b1c2f901c18a8cc9c3a", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Gnuplot", "ea5f748372b5d14642ce2b1c2f901c18a8cc9c3a", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Gnuplot", "ea5f748372b5d14642ce2b1c2f901c18a8cc9c3a", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -6109,6 +6517,20 @@ static SpdxLicenseList createList() .build() ); + builder.license( SpdxLicenseInfo.builder() + .reference( "./libpng-2.0.html" ) + .isDeprecatedLicenseId( false ) + .detailsUrl( "http://spdx.org/licenses/libpng-2.0.json" ) + .name( "PNG Reference Library version 2" ) + .licenseId( "libpng-2.0" ) + .seeAlso( "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt" ) + + .urlInfo( "http://libpng.org/pub/png/src/libpng-LICENSE.txt", "e01ba244558d7a6b6729885beb54e9e561583101", "text/plain", true, false ) + .urlInfo( "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt", "e01ba244558d7a6b6729885beb54e9e561583101", "text/plain", true, false ) + .isOsiApproved( false ) + .build() + ); + builder.license( SpdxLicenseInfo.builder() .reference( "./libtiff.html" ) .isDeprecatedLicenseId( false ) @@ -6117,7 +6539,10 @@ static SpdxLicenseList createList() .licenseId( "libtiff" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/libtiff" ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/libtiff", null, null, false, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/libtiff", "708e759486fc725e1b0851aa81832ca930809130", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/libtiff", "708e759486fc725e1b0851aa81832ca930809130", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/libtiff", "708e759486fc725e1b0851aa81832ca930809130", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/libtiff", "708e759486fc725e1b0851aa81832ca930809130", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -6130,7 +6555,26 @@ static SpdxLicenseList createList() .licenseId( "mpich2" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/MIT" ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT", null, null, false, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT#enna", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/MIT#feh", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT#enna", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/MIT#feh", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT#enna", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/MIT#feh", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT#enna", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/MIT#feh", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "5f9907fe0ec229349cae07b4f774844c18f36698", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -6143,10 +6587,10 @@ static SpdxLicenseList createList() .licenseId( "psfrag" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/psfrag" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/psfrag", "222683436f3cef3f2ff17f00f68cb16c42a641a2", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/psfrag", "222683436f3cef3f2ff17f00f68cb16c42a641a2", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/psfrag", "222683436f3cef3f2ff17f00f68cb16c42a641a2", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/psfrag", "222683436f3cef3f2ff17f00f68cb16c42a641a2", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/psfrag", "32d44b278ce3c316d8b5b7e2c7dda675cc3f0bfb", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/psfrag", "32d44b278ce3c316d8b5b7e2c7dda675cc3f0bfb", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/psfrag", "32d44b278ce3c316d8b5b7e2c7dda675cc3f0bfb", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/psfrag", "32d44b278ce3c316d8b5b7e2c7dda675cc3f0bfb", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -6159,7 +6603,10 @@ static SpdxLicenseList createList() .licenseId( "psutils" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/psutils" ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/psutils", null, null, false, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/psutils", "97bcc435e87889c737af7f96f12b8f9215f19df5", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/psutils", "97bcc435e87889c737af7f96f12b8f9215f19df5", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/psutils", "97bcc435e87889c737af7f96f12b8f9215f19df5", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/psutils", "97bcc435e87889c737af7f96f12b8f9215f19df5", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -6172,10 +6619,10 @@ static SpdxLicenseList createList() .licenseId( "wxWindows" ) .seeAlso( "https://opensource.org/licenses/WXwindows" ) - .urlInfo( "http://opensource.org/licenses/WXwindows", "46e5939d23b7bde744849479ad16f7ab67237e7c", "text/html", true, true ) - .urlInfo( "http://www.opensource.org/licenses/WXwindows", "46e5939d23b7bde744849479ad16f7ab67237e7c", "text/html", true, true ) - .urlInfo( "https://opensource.org/licenses/WXwindows", "46e5939d23b7bde744849479ad16f7ab67237e7c", "text/html", true, true ) - .urlInfo( "https://www.opensource.org/licenses/WXwindows", "46e5939d23b7bde744849479ad16f7ab67237e7c", "text/html", true, true ) + .urlInfo( "http://opensource.org/licenses/WXwindows", "854619e2b00190d2ef8d92df89d3feace947ae00", "text/html", false, true ) + .urlInfo( "http://www.opensource.org/licenses/WXwindows", "854619e2b00190d2ef8d92df89d3feace947ae00", "text/html", false, true ) + .urlInfo( "https://opensource.org/licenses/WXwindows", "854619e2b00190d2ef8d92df89d3feace947ae00", "text/html", false, true ) + .urlInfo( "https://www.opensource.org/licenses/WXwindows", "854619e2b00190d2ef8d92df89d3feace947ae00", "text/html", false, true ) .isOsiApproved( false ) .build() ); @@ -6189,10 +6636,10 @@ static SpdxLicenseList createList() .licenseId( "xinetd" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/Xinetd_License" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/Xinetd_License", "6345858ba6ab8e66fd205908b8a8ebd66ec5093e", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Xinetd_License", "6345858ba6ab8e66fd205908b8a8ebd66ec5093e", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/Xinetd_License", "6345858ba6ab8e66fd205908b8a8ebd66ec5093e", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Xinetd_License", "6345858ba6ab8e66fd205908b8a8ebd66ec5093e", "text/html", true, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/Xinetd_License", "fb9fc73d5d1c4396206b11262ba3114cc5ca8f00", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/Xinetd_License", "fb9fc73d5d1c4396206b11262ba3114cc5ca8f00", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/Xinetd_License", "fb9fc73d5d1c4396206b11262ba3114cc5ca8f00", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/Xinetd_License", "fb9fc73d5d1c4396206b11262ba3114cc5ca8f00", "text/html", true, true ) .isOsiApproved( false ) .build() ); @@ -6205,10 +6652,7 @@ static SpdxLicenseList createList() .licenseId( "xpp" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/xpp" ) - .urlInfo( "http://fedoraproject.org/wiki/Licensing/xpp", "1087e4c3bad5ae17dbd55658ed505ff5107765a2", "text/html", true, true ) - .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/xpp", "1087e4c3bad5ae17dbd55658ed505ff5107765a2", "text/html", true, true ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/xpp", "1087e4c3bad5ae17dbd55658ed505ff5107765a2", "text/html", true, true ) - .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/xpp", "1087e4c3bad5ae17dbd55658ed505ff5107765a2", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/xpp", null, null, false, true ) .isOsiApproved( false ) .build() ); @@ -6221,12 +6665,15 @@ static SpdxLicenseList createList() .licenseId( "zlib-acknowledgement" ) .seeAlso( "https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement" ) - .urlInfo( "https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement", null, null, false, true ) + .urlInfo( "http://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement", "2b8e20ff3942ce7e2e743ce7433caa87cc7fce3e", "text/html", true, true ) + .urlInfo( "http://www.fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement", "2b8e20ff3942ce7e2e743ce7433caa87cc7fce3e", "text/html", true, true ) + .urlInfo( "https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement", "2b8e20ff3942ce7e2e743ce7433caa87cc7fce3e", "text/html", true, true ) + .urlInfo( "https://www.fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement", "2b8e20ff3942ce7e2e743ce7433caa87cc7fce3e", "text/html", true, true ) .isOsiApproved( false ) .build() ); - builder.releaseDate( "2019-02-22" ); + builder.releaseDate( "2019-04-02" ); builder.urlReplacement( "archive.org-0", "(archive\\.org/web/[0-9]+)/", "$1id_/" ); builder.urlReplacement( "git.kernel.org-0", "https?://git\\.kernel\\.org/pub/scm/linux/([^/]+)/git/torvalds/linux\\.git/tree/(.*)", "https://git.kernel.org/pub/scm/linux/$1/git/torvalds/linux.git/plain/$2" ); @@ -6234,6 +6681,8 @@ static SpdxLicenseList createList() builder.urlReplacement( "github.com-0", "https?://github\\.com/([^/]+)/([^/]+)/blob/(.*)", "https://raw.githubusercontent.com/$1/$2/$3" ); builder.urlReplacement( "github.com/aws/mit-0", ".*github\\.com/aws/mit-0", "https://raw.githubusercontent.com/aws/mit-0/master/MIT-0" ); builder.urlReplacement( "microsoft.com/opensource/licenses.mspx", ".*microsoft\\.com/opensource/licenses\\.mspx", "https://web.archive.org/web/20150619132250id_/http://www.microsoft.com/en-us/openness/licenses.aspx" ); + builder.urlReplacement( "mozilla.org/MPL/MPL-1.1.txt", ".*\\Q.mozilla.org/MPL/MPL-1.1.txt\\E", "https://www.mozilla.org/media/MPL/1.1/index.0c5913925d40.txt" ); + builder.urlReplacement( "repository.jboss.com/licenses", "https?://repository\\.jboss\\.com/licenses/(.*)", "https://web.archive.org/web/20171202125112id_/http://repository.jboss.com/licenses/$1" ); builder.contentSanitizer( "artlibre.org-0", ".*artlibre\\.org.*", "", "" ); builder.contentSanitizer( "artlibre.org-1", ".*artlibre\\.org.*", "", "" ); @@ -6255,6 +6704,7 @@ static SpdxLicenseList createList() builder.contentSanitizer( "gianluca.dellavedova.org-2", ".*gianluca\\.dellavedova\\.org.*", "data-cf-modified-[^\\-]+-", "data-cf-modified--" ); builder.contentSanitizer( "gianluca.dellavedova.org-3", ".*gianluca\\.dellavedova\\.org.*", "atatags-[^\\-\"]+-[^\\-\"]+", "atatags--" ); builder.contentSanitizer( "joinup.ec.europa.eu-0", ".*joinup\\.ec\\.europa\\.eu.*", "", "" ); + builder.contentSanitizer( "ohwr.org-0", ".*ohwr\\.org.*", " - * https://raw.githubusercontent.com/spdx/license-list-data/master/json/licenses.json + * + * https://raw.githubusercontent.com/spdx/license-list-data/v3.5/json/licenses.json */ public class SpdxLicenseListDataTest { @@ -33,6 +33,6 @@ public class SpdxLicenseListDataTest public void getInstance() { SpdxLicenseList list = SpdxLicenseList.getLatest(); - org.junit.Assert.assertEquals( 383, list.getLicenses().size() ); + org.junit.Assert.assertEquals( 388, list.getLicenses().size() ); } } diff --git a/src/test/java/org/codehaus/mojo/license/spdx/SpdxLicenseListTest.java b/src/test/java/org/codehaus/mojo/license/spdx/SpdxLicenseListTest.java index 8683d7507..f8ba7eec2 100644 --- a/src/test/java/org/codehaus/mojo/license/spdx/SpdxLicenseListTest.java +++ b/src/test/java/org/codehaus/mojo/license/spdx/SpdxLicenseListTest.java @@ -1,5 +1,7 @@ package org.codehaus.mojo.license.spdx; +import java.util.Map; + import org.codehaus.mojo.license.spdx.SpdxLicenseInfo.Attachments.UrlInfo; import org.codehaus.mojo.license.utils.FileUtil; import org.junit.Assert; @@ -21,4 +23,34 @@ public void mimeTypes() } } } + + @Test + public void extraAliases() + { + final Map lics = SpdxLicenseList.getLatest().getLicenses(); + { + final Map urlInfos = lics.get( "Apache-2.0" ).getAttachments().getUrlInfos(); + Assert.assertTrue( urlInfos.containsKey( "https://opensource.org/licenses/apache2.0" ) ); + Assert.assertTrue( urlInfos.containsKey( "https://opensource.org/licenses/apache2.0.php" ) ); + Assert.assertTrue( urlInfos.containsKey( "https://opensource.org/licenses/apache2.0.html" ) ); + } + { + final Map urlInfos = lics.get( "BSD-2-Clause" ).getAttachments().getUrlInfos(); + Assert.assertTrue( urlInfos.containsKey( "https://opensource.org/licenses/bsd-license" ) ); + Assert.assertTrue( urlInfos.containsKey( "https://opensource.org/licenses/bsd-license.php" ) ); + Assert.assertTrue( urlInfos.containsKey( "https://opensource.org/licenses/bsd-license.html" ) ); + } + { + final Map urlInfos = lics.get( "CDDL-1.0" ).getAttachments().getUrlInfos(); + Assert.assertTrue( urlInfos.containsKey( "https://opensource.org/licenses/cddl1" ) ); + Assert.assertTrue( urlInfos.containsKey( "https://opensource.org/licenses/cddl1.php" ) ); + Assert.assertTrue( urlInfos.containsKey( "https://opensource.org/licenses/cddl1.html" ) ); + } + { + final Map urlInfos = lics.get( "MIT" ).getAttachments().getUrlInfos(); + Assert.assertTrue( urlInfos.containsKey( "https://opensource.org/licenses/mit-license" ) ); + Assert.assertTrue( urlInfos.containsKey( "https://opensource.org/licenses/mit-license.php" ) ); + Assert.assertTrue( urlInfos.containsKey( "https://opensource.org/licenses/mit-license.html" ) ); + } + } }