diff --git a/.gitignore b/.gitignore index eb6d262..84f8ac1 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,4 @@ go.work.sum # mac .DS_Store +*.json diff --git a/.grant.yaml b/.grant.yaml index 54788a6..b75cc2e 100644 --- a/.grant.yaml +++ b/.grant.yaml @@ -2,5 +2,11 @@ precedence: [deny, allow] deny-licenses: "*" allow-licenses: - - MIT - - Apache-2.0 \ No newline at end of file + - MPL-2.0 + - BSD-2-Clause + - BSD-3-Clause + - GPL-2.0-Or-Later+ + - Zlib + - MIT + - Apache-2.0 + diff --git a/cmd/grant/cli/command/check.go b/cmd/grant/cli/command/check.go index 623d763..398aeed 100644 --- a/cmd/grant/cli/command/check.go +++ b/cmd/grant/cli/command/check.go @@ -3,7 +3,6 @@ package command import ( "fmt" "slices" - "strings" "github.com/jedib0t/go-pretty/v6/list" "github.com/jedib0t/go-pretty/v6/text" @@ -12,7 +11,6 @@ import ( "github.com/anchore/clio" "github.com/anchore/grant/cmd/grant/cli/option" - "github.com/anchore/grant/event" "github.com/anchore/grant/grant" "github.com/anchore/grant/internal/bus" "github.com/anchore/grant/internal/input" @@ -46,6 +44,8 @@ func Check(app clio.Application) *cobra.Command { }, cfg) } +// TODO: upgrade the ui a bit with monitors for SBOM generation and license checking +// Progress can be incremented used on a per package basis when grant.Check is called func runCheck(cfg CheckConfig, sources []string) (errs error) { var reports []*grant.Report // check if user provided source by stdin @@ -56,29 +56,7 @@ func runCheck(cfg CheckConfig, sources []string) (errs error) { sources = append(sources, "-") } - monitor := bus.PublishTask( - event.Title{ - Default: "Check licenses from sources for non-compliance", - WhileRunning: "Checking licenses from sources for non-compliance", - OnSuccess: "Checked licenses from sources for non-compliance", - }, - "", - len(sources), - ) - - defer func() { - if errs != nil { - monitor.SetError(errs) - } else { - monitor.AtomicStage.Set(strings.Join(sources, ", ")) - monitor.SetCompleted() - } - }() - for _, src := range sources { - monitor.Increment() - monitor.AtomicStage.Set(src) - // TODO: branch into source detection here to generate the sbom reader, err := input.GetReader(src) if err != nil { @@ -92,10 +70,11 @@ func runCheck(cfg CheckConfig, sources []string) (errs error) { } log.Debugf("found sbom format: %s, version: %s; checking licenses...", formatID, version) - report := grant.NewReport(sbom.Source.Name, cfg.Check) + report := grant.NewReport(fmt.Sprintf("%s %s", sbom.Source.Name, sbom.Source.Version), cfg.Check) for p := range sbom.Artifacts.Packages.Enumerate() { log.Debugf("checking package: %s for non compliant licenses...", p.Name) - report.Check(p.Name, p.Licenses) + licenses := grant.ConvertSyftLicenses(p.Licenses) + report.Check(p.Name, licenses) } reports = append(reports, report) } @@ -107,16 +86,11 @@ func runCheck(cfg CheckConfig, sources []string) (errs error) { } func presentReports(reports []*grant.Report) error { - if len(reports) == 0 { - bus.Report("no license compliance reports to show") - return nil - } - - l := list.NewWriter() + l := list.NewWriter() // TODO: style me customStyle := list.Style{ Format: text.FormatTitle, CharItemSingle: "", - CharItemTop: "▶", + CharItemTop: "", CharItemFirst: "", CharItemMiddle: "", CharItemVertical: " ", @@ -127,41 +101,24 @@ func presentReports(reports []*grant.Report) error { } l.SetStyle(customStyle) for _, report := range reports { - l.AppendItem(fmt.Sprintf("Source: %s", report.Source)) - l.Indent() - for pkg, _ := range report.CheckedPackages { - l.AppendItem(fmt.Sprintf("Package: %s", pkg)) - l.AppendItem("Licenses: ") - violations := report.Violations[pkg] - compliance := report.Compliant[pkg] - ignored := report.Ignored[pkg] - if len(compliance) > 0 { - l.Indent() - for _, lic := range compliance { - // green emoji check mark append - l.AppendItem(fmt.Sprintf("%s %s", text.FgGreen.Sprint("- ✅"), lic)) - } - l.UnIndent() - } - if len(violations) > 0 { - l.Indent() - for _, lic := range violations { - // red emoji x mark append - l.AppendItem(fmt.Sprintf("%s %s", text.FgRed.Sprint("- ❌"), lic)) - } - l.UnIndent() - } - if len(ignored) > 0 { - // grey emoji question mark append + if len(report.PackageViolations) == 0 { + l.AppendItem("No License Violations: ✅") + continue + } + + l.AppendItem("License Violations:") + for license, pkg := range report.LicenseViolations { + l.AppendItem(fmt.Sprintf("%s %s", fmt.Sprint("-"), license)) + // TODO: we probably want a flag that can turn this on + for _, p := range pkg { l.Indent() - for _, lic := range ignored { - l.AppendItem(fmt.Sprintf("%s %s", text.FgHiBlack.Sprint("- ❓"), lic)) - } + l.AppendItem(fmt.Sprintf("%s %s", fmt.Sprint("-"), p)) l.UnIndent() } + l.UnIndent() } } bus.Report(l.Render()) return nil -} \ No newline at end of file +} diff --git a/grant/grant.go b/grant/grant.go index 2262191..547adc1 100644 --- a/grant/grant.go +++ b/grant/grant.go @@ -2,6 +2,7 @@ package grant import ( "slices" + "strings" "github.com/anchore/grant/cmd/grant/cli/option" ) @@ -12,18 +13,19 @@ func IsAllowed(cfg option.Check, license string) bool { // deny licenses take precidence over allow licenses by default // if a license is in both lists, it is denied -// if a license is in neither list, it is denied: this is the default behavior +// if a license is in neither list, it is denied; this is the default behavior +// licenses are matched on a case-insensitive basis // TODO: add support for glob matching expressions; for now, only exact matches are supported func isAllowed(cfg option.Check, license string) bool { if slices.Contains(cfg.DenyLicenses, "*") { // all licenses are denied by default // if a license is not in the allow list, then it is a forbidden license - if slices.Contains(cfg.AllowLicenses, license) { + if slices.Contains(cfg.AllowLicenses, strings.ToLower(license)) { return true } return false } - // user has explicitly denied licenses (and no licenses are denied by default) + // user has explicitly denied licenses (no licenses are denied by default) if slices.Contains(cfg.DenyLicenses, license) { return false } diff --git a/grant/license.go b/grant/license.go index eb2d4fa..f6f43cb 100644 --- a/grant/license.go +++ b/grant/license.go @@ -1 +1,45 @@ package grant + +import ( + "github.com/anchore/syft/syft/pkg" +) + +type License struct { + // SPDXExpression is the SPDX expression for the license + SPDXExpression string `json:"spdxExpression"` + // Name is the name of the individual license if SPDXExpression is unset + Name string `json:"name"` + // Value is contents of the license + Value string `json:"value"` + // Locations are the paths for a package that show evidence of the license + Locations []string `json:"location"` +} + +// ConvertSyftLicenses converts a syft LicenseSet to a grant License slice +func ConvertSyftLicenses(set pkg.LicenseSet) (licenses []License) { + licenses = make([]License, 0) + for _, lic := range set.ToSlice() { + // get all the locations for the license + locations := lic.Locations.ToSlice() + licenseLocations := make([]string, 0) + for _, location := range locations { + licenseLocations = append(licenseLocations, location.RealPath) + } + + if lic.SPDXExpression != "" { + licenses = append(licenses, License{ + SPDXExpression: lic.SPDXExpression, + Locations: licenseLocations, + }) + continue + } + + // no spdx expression from syft so just add the license as-is + // currently these are ignored by the checker + licenses = append(licenses, License{ + Name: lic.Value, + Locations: licenseLocations, + }) + } + return licenses +} diff --git a/grant/report.go b/grant/report.go index 3e9b242..7faf6de 100644 --- a/grant/report.go +++ b/grant/report.go @@ -1,96 +1,116 @@ package grant import ( + "strings" + + "github.com/github/go-spdx/v2/spdxexp" + "github.com/anchore/grant/cmd/grant/cli/option" "github.com/anchore/grant/internal/log" - "github.com/anchore/syft/syft/pkg" ) type Report struct { - // The source of the SBOM + // The source of the report Source string `json:"source" yaml:"source"` - // If true, then all licenses are denied by default and only those explicitly allowed are allowed - Violations map[string][]string `json:"violations" yaml:"violations"` + // Track packages and their licenses that violated the policy + PackageViolations map[string][]string `json:"violations" yaml:"violations"` // Track packages with licenses that were compliant to the policy - Compliant map[string][]string `json:"compliant" yaml:"compliant"` + PackageCompliant map[string][]string `json:"compliant" yaml:"compliant"` // ignored is used to track packages with licenses that were not SPDX compliant - CheckedPackages map[string]bool - Ignored map[string][]string `json:"ignored" yaml:"ignored"` - Config option.Check `json:"config" yaml:"config"` + PackageIgnored map[string][]string `json:"ignored" yaml:"ignored"` + CheckedPackages map[string]struct{} + + // Track licenses that were not allowed by the policy and the packages that contained them + LicenseViolations map[string][]string `json:"license_violations" yaml:"license_violations"` + // Track licenses that were allowed by the policy and the packages that contained them + LicenseCompliant map[string][]string `json:"license_compliant" yaml:"license_compliant"` + // Track licenses that were not SPDX compliant and the packages that contained them + LicenseIgnored map[string][]string `json:"license_ignored" yaml:"license_ignored"` + // Track list of licenses that were checked for the above two maps + CheckedLicenses map[string]struct{} + Config option.Check `json:"config" yaml:"config"` } func NewReport(src string, cfg option.Check) *Report { + // lowercase all the licenses in the config for case-insensitive matching + for i, lic := range cfg.AllowLicenses { + cfg.AllowLicenses[i] = strings.ToLower(lic) + } + + for i, lic := range cfg.DenyLicenses { + cfg.DenyLicenses[i] = strings.ToLower(lic) + } return &Report{ - Source: src, - Violations: make(map[string][]string), - Compliant: make(map[string][]string), - Ignored: make(map[string][]string), - CheckedPackages: make(map[string]bool), - Config: cfg, + Source: src, + PackageViolations: make(map[string][]string), + PackageCompliant: make(map[string][]string), + PackageIgnored: make(map[string][]string), + CheckedPackages: make(map[string]struct{}), + LicenseViolations: make(map[string][]string), + LicenseCompliant: make(map[string][]string), + LicenseIgnored: make(map[string][]string), + CheckedLicenses: make(map[string]struct{}), + Config: cfg, } } // Check will check the licenses in the given package against the config in the report -func (r *Report) Check(packageName string, licenses pkg.LicenseSet) { +func (r *Report) Check(packageName string, licenses []License) { // track the package as checked - r.CheckedPackages[packageName] = true + r.CheckedPackages[packageName] = struct{}{} - for _, license := range licenses.ToSlice() { + for _, license := range licenses { if license.SPDXExpression == "" { // TODO: we may want to enhance this behavior to allow for a "best guess" SPDX expression - log.Debugf("package: %s has no SPDX license ID; found possible license: %s", packageName, license.Value) + log.Debugf("package: %s has a license with no SPDX license ID; found possible license: %s", packageName, license.Value) r.addIgnored(packageName, license.Value) continue } - // check if the license is not allowed - if !IsAllowed(r.Config, license.SPDXExpression) { - r.addViolation(packageName, license.SPDXExpression) + + // if there is an SPDX expression, extract the licenses and break them into their own License objects + // note: we still treat expressions with OR as a potential violation that users would need to manually review + // TODO: grant command that will "fix" the SPDX expression to be a single license (letting the author chose) + // this should modify the config file in some way that the user can review and commit + licenses, err := spdxexp.ExtractLicenses(license.SPDXExpression) + if err != nil { + log.Debugf("package: %s has a license with an invalid SPDX license ID: %s", packageName, license.SPDXExpression) + r.addIgnored(packageName, license.SPDXExpression) continue } - // otherwise, the license is allowed - r.addCompliant(packageName, license.SPDXExpression) + + for _, lic := range licenses { + // check if the license is denied + if !IsAllowed(r.Config, lic) { + r.addViolation(packageName, lic) + continue + } + // otherwise, the license is allowed + r.addCompliant(packageName, lic) + } } return } func (r *Report) addViolation(packageName string, violatingLicenses ...string) { - if r.Violations == nil { - r.Violations = make(map[string][]string) + for _, violatingLicense := range violatingLicenses { + r.LicenseViolations[violatingLicense] = append(r.LicenseViolations[violatingLicense], packageName) } - if licenses, ok := r.Violations[packageName]; ok { - r.Violations[packageName] = append(licenses, violatingLicenses...) - return - } - - r.Violations[packageName] = violatingLicenses - return + r.PackageViolations[packageName] = append(r.PackageViolations[packageName], violatingLicenses...) } func (r *Report) addCompliant(packageName string, compliantLicenses ...string) { - if r.Compliant == nil { - r.Compliant = make(map[string][]string) - } - - if licenses, ok := r.Compliant[packageName]; ok { - r.Compliant[packageName] = append(licenses, compliantLicenses...) - return + for _, compliantLicense := range compliantLicenses { + r.LicenseCompliant[compliantLicense] = append(r.LicenseCompliant[compliantLicense], packageName) } - r.Compliant[packageName] = compliantLicenses - return + r.PackageCompliant[packageName] = append(r.PackageCompliant[packageName], compliantLicenses...) } func (r *Report) addIgnored(packageName string, ignoredLicenses ...string) { - if r.Ignored == nil { - r.Ignored = make(map[string][]string) - } - - if licenses, ok := r.Ignored[packageName]; ok { - r.Ignored[packageName] = append(licenses, ignoredLicenses...) - return + for _, ignoredLicense := range ignoredLicenses { + r.LicenseIgnored[ignoredLicense] = append(r.LicenseIgnored[ignoredLicense], packageName) } - r.Ignored[packageName] = ignoredLicenses - return + r.PackageIgnored[packageName] = append(r.PackageIgnored[packageName], ignoredLicenses...) } diff --git a/internal/download_file.go b/internal/download_file.go deleted file mode 100644 index eef4e19..0000000 --- a/internal/download_file.go +++ /dev/null @@ -1,47 +0,0 @@ -package internal - -import ( - "crypto/sha256" - "fmt" - "io" - "net/http" - "os" - - "github.com/anchore/grant/internal/log" -) - -func DownloadFile(url string, filepath string, checksum string) (err error) { - out, err := os.Create(filepath) - if err != nil { - return err - } - defer out.Close() - - resp, err := http.Get(url) // nolint:gosec - if err != nil { - return err - } - defer resp.Body.Close() - - if resp.StatusCode != http.StatusOK { - return fmt.Errorf("bad status: %s", resp.Status) - } - - // take sha256 of file and compare with checksum while copying to disk - h := sha256.New() - tee := io.TeeReader(resp.Body, h) - - if _, err := io.Copy(out, tee); err != nil { - return err - } - - if checksum != "" { - if checksum != fmt.Sprintf("%x", h.Sum(nil)) { - return fmt.Errorf("checksum mismatch for %q", filepath) - } - - log.WithFields("checksum", checksum, "asset", filepath, "url", url).Trace("checksum verified") - } - - return nil -} diff --git a/internal/download_file_test.go b/internal/download_file_test.go deleted file mode 100644 index 1cea49e..0000000 --- a/internal/download_file_test.go +++ /dev/null @@ -1,60 +0,0 @@ -package internal - -import ( - "net/http" - "net/http/httptest" - "os" - "path/filepath" - "testing" - - "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/require" -) - -func Test_DownloadFile(t *testing.T) { - contents := `this is the file!` - expectedDigest := "fd979f1e39618058000d02793baa4694afb1a1ba1a463b1a543806992be5b5b2" - tests := []struct { - name string - checksum string - wantErr require.ErrorAssertionFunc - }{ - { - name: "happy path", - checksum: expectedDigest, - }, - { - name: "mismatched checksum", - checksum: "805694affd979f1438069800e3961b1a1ba50d02793baa492be5b5b2a1a463b1", - wantErr: require.Error, - }, - { - name: "missing checksum", - checksum: "", - }, - } - for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - if tt.wantErr == nil { - tt.wantErr = require.NoError - } - s := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - require.Equal(t, "GET", r.Method) - _, err := w.Write([]byte(contents)) - require.NoError(t, err) - return - })) - t.Cleanup(s.Close) - - dir := t.TempDir() - dlPath := filepath.Join(dir, "the-file-path.txt") - - tt.wantErr(t, DownloadFile(s.URL, dlPath, tt.checksum)) - - gotContents, err := os.ReadFile(dlPath) - require.NoError(t, err) - - assert.Equal(t, contents, string(gotContents)) - }) - } -} diff --git a/internal/spdxlicense/generate/generate_license_index.go b/internal/spdxlicense/generate/generate_license_index.go new file mode 100644 index 0000000..7af8e0f --- /dev/null +++ b/internal/spdxlicense/generate/generate_license_index.go @@ -0,0 +1,111 @@ +//go:generate go run generate_license_index.go +package main + +import ( + "encoding/json" + "fmt" + "net/http" + "os" + "strings" + "text/template" + "time" + + "github.com/anchore/grant/internal/spdxlicense" +) + +const ( + generates = "../license_index.go" + // TODO: should we pull from other sources like the github api? + url = "https://spdx.org/licenses/licenses.json" +) + +var FuncMap = template.FuncMap{ + "ToLower": func(format string, args ...interface{}) string { + return strings.ToLower(fmt.Sprintf(format, args...)) + }, +} + +var codeTemplate = template.Must(template.New("license_index.go").Funcs(FuncMap).Parse(`// Code generated by internal/spdxlicense/generate/generate_license_index.go; DO NOT EDIT. +// This file was generated by go generate; DO NOT EDIT; {{ .Timestamp }} +// License source: {{ .URL }} +package spdxlicense + +const Version = {{ printf "%q" .Version }} + +const ReleaseData = {{ printf "%q" .ReleaseDate }} + +var Index = map[string]SPDXLicense{ +{{- range .Licenses }} + {{ ToLower "%q" .LicenseID }}: { + Reference: {{ printf "%q" .Reference }}, + IsDeprecatedLicenseID: {{ .IsDeprecatedLicenseID }}, + DetailsURL: {{ printf "%q" .DetailsURL }}, + ReferenceNumber: {{ .ReferenceNumber }}, + Name: {{ printf "%q" .Name }}, + LicenseID: {{ printf "%q" .LicenseID }}, + SeeAlso: []string{ + {{- range .SeeAlso }} + {{ printf "%q" . }}, + {{- end }} + }, + IsOsiApproved: {{ .IsOsiApproved }}, + }, +{{- end }} +} +`)) + +func main() { + if err := generate(); err != nil { + fmt.Println(err) + os.Exit(1) + } + fmt.Println("generated", generates) +} + +func generate() error { + spdxLicenseResposne, err := fetchLicenses(url) + if err != nil { + return err + } + + if err := os.Remove(generates); err != nil && !os.IsNotExist(err) { + fmt.Println("Error deleting existing file:", err) + return err + } + + f, err := os.Create(generates) + if err != nil { + return err + } + defer f.Close() + + if err := codeTemplate.Execute(f, struct { + Timestamp string + URL string + Version string + ReleaseDate string + Licenses []spdxlicense.SPDXLicense + }{ + Timestamp: time.Now().UTC().Format(time.RFC3339), + URL: url, + Version: spdxLicenseResposne.LicenseListVersion, + ReleaseDate: spdxLicenseResposne.ReleaseDate, + Licenses: spdxLicenseResposne.Licenses, + }); err != nil { + return err + } + return nil +} + +func fetchLicenses(url string) (r *spdxlicense.SPDXLicenseResponse, err error) { + response, err := http.Get(url) + if err != nil { + return r, err + } + defer response.Body.Close() + var spdxLicenseResponse spdxlicense.SPDXLicenseResponse + if err := json.NewDecoder(response.Body).Decode(&spdxLicenseResponse); err != nil { + return r, err + } + return &spdxLicenseResponse, nil +} diff --git a/internal/spdxlicense/license.go b/internal/spdxlicense/license.go new file mode 100644 index 0000000..70884fd --- /dev/null +++ b/internal/spdxlicense/license.go @@ -0,0 +1,20 @@ +package spdxlicense + +// SPDXLicenseResponse is the response from the SPDX license list endpoint +// https://spdx.org/licenses/licenses.json +type SPDXLicenseResponse struct { + LicenseListVersion string `json:"licenseListVersion"` + ReleaseDate string `json:"releaseDate"` + Licenses []SPDXLicense `json:"licenses"` +} + +type SPDXLicense struct { + Reference string `json:"reference"` + IsDeprecatedLicenseID bool `json:"isDeprecatedLicenseId"` + DetailsURL string `json:"detailsUrl"` + ReferenceNumber int `json:"referenceNumber"` + Name string `json:"name"` + LicenseID string `json:"licenseId"` + SeeAlso []string `json:"seeAlso"` + IsOsiApproved bool `json:"isOsiApproved"` +} diff --git a/internal/spdxlicense/license_index.go b/internal/spdxlicense/license_index.go new file mode 100644 index 0000000..dbd32e5 --- /dev/null +++ b/internal/spdxlicense/license_index.go @@ -0,0 +1,7374 @@ +// Code generated by internal/spdxlicense/generate/generate_license_index.go; DO NOT EDIT. +// This file was generated by go generate; DO NOT EDIT; 2023-11-20T17:52:23Z +// License source: https://spdx.org/licenses/licenses.json +package spdxlicense + +const Version = "3.22" + +const ReleaseData = "2023-10-05" + +var Index = map[string]SPDXLicense{ + "qhull": { + Reference: "https://spdx.org/licenses/Qhull.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Qhull.json", + ReferenceNumber: 0, + Name: "Qhull License", + LicenseID: "Qhull", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Qhull", + }, + IsOsiApproved: false, + }, + "nosl": { + Reference: "https://spdx.org/licenses/NOSL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/NOSL.json", + ReferenceNumber: 1, + Name: "Netizen Open Source License", + LicenseID: "NOSL", + SeeAlso: []string{ + "http://bits.netizen.com.au/licenses/NOSL/nosl.txt", + }, + IsOsiApproved: false, + }, + "cc-by-nd-2.5": { + Reference: "https://spdx.org/licenses/CC-BY-ND-2.5.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-ND-2.5.json", + ReferenceNumber: 2, + Name: "Creative Commons Attribution No Derivatives 2.5 Generic", + LicenseID: "CC-BY-ND-2.5", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nd/2.5/legalcode", + }, + IsOsiApproved: false, + }, + "o-uda-1.0": { + Reference: "https://spdx.org/licenses/O-UDA-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/O-UDA-1.0.json", + ReferenceNumber: 3, + Name: "Open Use of Data Agreement v1.0", + LicenseID: "O-UDA-1.0", + SeeAlso: []string{ + "https://github.com/microsoft/Open-Use-of-Data-Agreement/blob/v1.0/O-UDA-1.0.md", + "https://cdla.dev/open-use-of-data-agreement-v1-0/", + }, + IsOsiApproved: false, + }, + "drl-1.0": { + Reference: "https://spdx.org/licenses/DRL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/DRL-1.0.json", + ReferenceNumber: 4, + Name: "Detection Rule License 1.0", + LicenseID: "DRL-1.0", + SeeAlso: []string{ + "https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md", + }, + IsOsiApproved: false, + }, + "imagemagick": { + Reference: "https://spdx.org/licenses/ImageMagick.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/ImageMagick.json", + ReferenceNumber: 5, + Name: "ImageMagick License", + LicenseID: "ImageMagick", + SeeAlso: []string{ + "http://www.imagemagick.org/script/license.php", + }, + IsOsiApproved: false, + }, + "mpich2": { + Reference: "https://spdx.org/licenses/mpich2.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/mpich2.json", + ReferenceNumber: 6, + Name: "mpich2 License", + LicenseID: "mpich2", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/MIT", + }, + IsOsiApproved: false, + }, + "cc-by-sa-4.0": { + Reference: "https://spdx.org/licenses/CC-BY-SA-4.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-SA-4.0.json", + ReferenceNumber: 7, + Name: "Creative Commons Attribution Share Alike 4.0 International", + LicenseID: "CC-BY-SA-4.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-sa/4.0/legalcode", + }, + IsOsiApproved: false, + }, + "spl-1.0": { + Reference: "https://spdx.org/licenses/SPL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SPL-1.0.json", + ReferenceNumber: 8, + Name: "Sun Public License v1.0", + LicenseID: "SPL-1.0", + SeeAlso: []string{ + "https://opensource.org/licenses/SPL-1.0", + }, + IsOsiApproved: true, + }, + "mcphee-slideshow": { + Reference: "https://spdx.org/licenses/McPhee-slideshow.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/McPhee-slideshow.json", + ReferenceNumber: 9, + Name: "McPhee Slideshow License", + LicenseID: "McPhee-slideshow", + SeeAlso: []string{ + "https://mirror.las.iastate.edu/tex-archive/graphics/metapost/contrib/macros/slideshow/slideshow.mp", + }, + IsOsiApproved: false, + }, + "mit-enna": { + Reference: "https://spdx.org/licenses/MIT-enna.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MIT-enna.json", + ReferenceNumber: 10, + Name: "enna License", + LicenseID: "MIT-enna", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/MIT#enna", + }, + IsOsiApproved: false, + }, + "osl-2.1": { + Reference: "https://spdx.org/licenses/OSL-2.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OSL-2.1.json", + ReferenceNumber: 11, + Name: "Open Software License 2.1", + LicenseID: "OSL-2.1", + SeeAlso: []string{ + "http://web.archive.org/web/20050212003940/http://www.rosenlaw.com/osl21.htm", + "https://opensource.org/licenses/OSL-2.1", + }, + IsOsiApproved: true, + }, + "gfdl-1.2-or-later": { + Reference: "https://spdx.org/licenses/GFDL-1.2-or-later.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GFDL-1.2-or-later.json", + ReferenceNumber: 12, + Name: "GNU Free Documentation License v1.2 or later", + LicenseID: "GFDL-1.2-or-later", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", + }, + IsOsiApproved: false, + }, + "bsd-3-clause-lbnl": { + Reference: "https://spdx.org/licenses/BSD-3-Clause-LBNL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-3-Clause-LBNL.json", + ReferenceNumber: 13, + Name: "Lawrence Berkeley National Labs BSD variant license", + LicenseID: "BSD-3-Clause-LBNL", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/LBNLBSD", + }, + IsOsiApproved: true, + }, + "ofl-1.0-rfn": { + Reference: "https://spdx.org/licenses/OFL-1.0-RFN.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OFL-1.0-RFN.json", + ReferenceNumber: 14, + Name: "SIL Open Font License 1.0 with Reserved Font Name", + LicenseID: "OFL-1.0-RFN", + SeeAlso: []string{ + "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web", + }, + IsOsiApproved: false, + }, + "gpl-3.0": { + Reference: "https://spdx.org/licenses/GPL-3.0.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/GPL-3.0.json", + ReferenceNumber: 15, + Name: "GNU General Public License v3.0 only", + LicenseID: "GPL-3.0", + SeeAlso: []string{ + "https://www.gnu.org/licenses/gpl-3.0-standalone.html", + "https://opensource.org/licenses/GPL-3.0", + }, + IsOsiApproved: true, + }, + "watcom-1.0": { + Reference: "https://spdx.org/licenses/Watcom-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Watcom-1.0.json", + ReferenceNumber: 16, + Name: "Sybase Open Watcom Public License 1.0", + LicenseID: "Watcom-1.0", + SeeAlso: []string{ + "https://opensource.org/licenses/Watcom-1.0", + }, + IsOsiApproved: true, + }, + "mpl-1.0": { + Reference: "https://spdx.org/licenses/MPL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MPL-1.0.json", + ReferenceNumber: 17, + Name: "Mozilla Public License 1.0", + LicenseID: "MPL-1.0", + SeeAlso: []string{ + "http://www.mozilla.org/MPL/MPL-1.0.html", + "https://opensource.org/licenses/MPL-1.0", + }, + IsOsiApproved: true, + }, + "aladdin": { + Reference: "https://spdx.org/licenses/Aladdin.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Aladdin.json", + ReferenceNumber: 18, + Name: "Aladdin Free Public License", + LicenseID: "Aladdin", + SeeAlso: []string{ + "http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm", + }, + IsOsiApproved: false, + }, + "etalab-2.0": { + Reference: "https://spdx.org/licenses/etalab-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/etalab-2.0.json", + ReferenceNumber: 19, + Name: "Etalab Open License 2.0", + LicenseID: "etalab-2.0", + SeeAlso: []string{ + "https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf", + "https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE", + }, + IsOsiApproved: false, + }, + "copyleft-next-0.3.0": { + Reference: "https://spdx.org/licenses/copyleft-next-0.3.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/copyleft-next-0.3.0.json", + ReferenceNumber: 20, + Name: "copyleft-next 0.3.0", + LicenseID: "copyleft-next-0.3.0", + SeeAlso: []string{ + "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.0", + }, + IsOsiApproved: false, + }, + "nlpl": { + Reference: "https://spdx.org/licenses/NLPL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/NLPL.json", + ReferenceNumber: 21, + Name: "No Limit Public License", + LicenseID: "NLPL", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/NLPL", + }, + IsOsiApproved: false, + }, + "mplus": { + Reference: "https://spdx.org/licenses/mplus.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/mplus.json", + ReferenceNumber: 22, + Name: "mplus Font License", + LicenseID: "mplus", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing:Mplus?rd=Licensing/mplus", + }, + IsOsiApproved: false, + }, + "ecl-1.0": { + Reference: "https://spdx.org/licenses/ECL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/ECL-1.0.json", + ReferenceNumber: 23, + Name: "Educational Community License v1.0", + LicenseID: "ECL-1.0", + SeeAlso: []string{ + "https://opensource.org/licenses/ECL-1.0", + }, + IsOsiApproved: true, + }, + "fwlw": { + Reference: "https://spdx.org/licenses/fwlw.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/fwlw.json", + ReferenceNumber: 24, + Name: "fwlw License", + LicenseID: "fwlw", + SeeAlso: []string{ + "https://mirrors.nic.cz/tex-archive/macros/latex/contrib/fwlw/README", + }, + IsOsiApproved: false, + }, + "blueoak-1.0.0": { + Reference: "https://spdx.org/licenses/BlueOak-1.0.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BlueOak-1.0.0.json", + ReferenceNumber: 25, + Name: "Blue Oak Model License 1.0.0", + LicenseID: "BlueOak-1.0.0", + SeeAlso: []string{ + "https://blueoakcouncil.org/license/1.0.0", + }, + IsOsiApproved: false, + }, + "jpnic": { + Reference: "https://spdx.org/licenses/JPNIC.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/JPNIC.json", + ReferenceNumber: 26, + Name: "Japan Network Information Center License", + LicenseID: "JPNIC", + SeeAlso: []string{ + "https://gitlab.isc.org/isc-projects/bind9/blob/master/COPYRIGHT#L366", + }, + IsOsiApproved: false, + }, + "afl-3.0": { + Reference: "https://spdx.org/licenses/AFL-3.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/AFL-3.0.json", + ReferenceNumber: 27, + Name: "Academic Free License v3.0", + LicenseID: "AFL-3.0", + SeeAlso: []string{ + "http://www.rosenlaw.com/AFL3.0.htm", + "https://opensource.org/licenses/afl-3.0", + }, + IsOsiApproved: true, + }, + "cc-by-nc-sa-2.0-fr": { + Reference: "https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR.json", + ReferenceNumber: 28, + Name: "Creative Commons Attribution-NonCommercial-ShareAlike 2.0 France", + LicenseID: "CC-BY-NC-SA-2.0-FR", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc-sa/2.0/fr/legalcode", + }, + IsOsiApproved: false, + }, + "gfdl-1.3-invariants-or-later": { + Reference: "https://spdx.org/licenses/GFDL-1.3-invariants-or-later.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GFDL-1.3-invariants-or-later.json", + ReferenceNumber: 29, + Name: "GNU Free Documentation License v1.3 or later - invariants", + LicenseID: "GFDL-1.3-invariants-or-later", + SeeAlso: []string{ + "https://www.gnu.org/licenses/fdl-1.3.txt", + }, + IsOsiApproved: false, + }, + "cfitsio": { + Reference: "https://spdx.org/licenses/CFITSIO.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CFITSIO.json", + ReferenceNumber: 30, + Name: "CFITSIO License", + LicenseID: "CFITSIO", + SeeAlso: []string{ + "https://heasarc.gsfc.nasa.gov/docs/software/fitsio/c/f_user/node9.html", + "https://heasarc.gsfc.nasa.gov/docs/software/ftools/fv/doc/license.html", + }, + IsOsiApproved: false, + }, + "gpl-1.0-only": { + Reference: "https://spdx.org/licenses/GPL-1.0-only.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GPL-1.0-only.json", + ReferenceNumber: 31, + Name: "GNU General Public License v1.0 only", + LicenseID: "GPL-1.0-only", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + }, + IsOsiApproved: false, + }, + "xskat": { + Reference: "https://spdx.org/licenses/XSkat.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/XSkat.json", + ReferenceNumber: 32, + Name: "XSkat License", + LicenseID: "XSkat", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/XSkat_License", + }, + IsOsiApproved: false, + }, + "cc-by-nd-2.0": { + Reference: "https://spdx.org/licenses/CC-BY-ND-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-ND-2.0.json", + ReferenceNumber: 33, + Name: "Creative Commons Attribution No Derivatives 2.0 Generic", + LicenseID: "CC-BY-ND-2.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nd/2.0/legalcode", + }, + IsOsiApproved: false, + }, + "cc-by-sa-3.0-igo": { + Reference: "https://spdx.org/licenses/CC-BY-SA-3.0-IGO.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-SA-3.0-IGO.json", + ReferenceNumber: 34, + Name: "Creative Commons Attribution-ShareAlike 3.0 IGO", + LicenseID: "CC-BY-SA-3.0-IGO", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-sa/3.0/igo/legalcode", + }, + IsOsiApproved: false, + }, + "cc-by-3.0-nl": { + Reference: "https://spdx.org/licenses/CC-BY-3.0-NL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-3.0-NL.json", + ReferenceNumber: 35, + Name: "Creative Commons Attribution 3.0 Netherlands", + LicenseID: "CC-BY-3.0-NL", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by/3.0/nl/legalcode", + }, + IsOsiApproved: false, + }, + "fsful": { + Reference: "https://spdx.org/licenses/FSFUL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/FSFUL.json", + ReferenceNumber: 36, + Name: "FSF Unlimited License", + LicenseID: "FSFUL", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License", + }, + IsOsiApproved: false, + }, + "hpnd-export-us": { + Reference: "https://spdx.org/licenses/HPND-export-US.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/HPND-export-US.json", + ReferenceNumber: 37, + Name: "HPND with US Government export control warning", + LicenseID: "HPND-export-US", + SeeAlso: []string{ + "https://www.kermitproject.org/ck90.html#source", + }, + IsOsiApproved: false, + }, + "catosl-1.1": { + Reference: "https://spdx.org/licenses/CATOSL-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CATOSL-1.1.json", + ReferenceNumber: 38, + Name: "Computer Associates Trusted Open Source License 1.1", + LicenseID: "CATOSL-1.1", + SeeAlso: []string{ + "https://opensource.org/licenses/CATOSL-1.1", + }, + IsOsiApproved: true, + }, + "zpl-2.1": { + Reference: "https://spdx.org/licenses/ZPL-2.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/ZPL-2.1.json", + ReferenceNumber: 39, + Name: "Zope Public License 2.1", + LicenseID: "ZPL-2.1", + SeeAlso: []string{ + "http://old.zope.org/Resources/ZPL/", + }, + IsOsiApproved: true, + }, + "cc-by-nc-sa-2.0-de": { + Reference: "https://spdx.org/licenses/CC-BY-NC-SA-2.0-DE.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-SA-2.0-DE.json", + ReferenceNumber: 40, + Name: "Creative Commons Attribution Non Commercial Share Alike 2.0 Germany", + LicenseID: "CC-BY-NC-SA-2.0-DE", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc-sa/2.0/de/legalcode", + }, + IsOsiApproved: false, + }, + "ogl-uk-1.0": { + Reference: "https://spdx.org/licenses/OGL-UK-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OGL-UK-1.0.json", + ReferenceNumber: 41, + Name: "Open Government Licence v1.0", + LicenseID: "OGL-UK-1.0", + SeeAlso: []string{ + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/1/", + }, + IsOsiApproved: false, + }, + "bsd-3-clause-no-nuclear-warranty": { + Reference: "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.json", + ReferenceNumber: 42, + Name: "BSD 3-Clause No Nuclear Warranty", + LicenseID: "BSD-3-Clause-No-Nuclear-Warranty", + SeeAlso: []string{ + "https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt", + }, + IsOsiApproved: false, + }, + "tu-berlin-2.0": { + Reference: "https://spdx.org/licenses/TU-Berlin-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/TU-Berlin-2.0.json", + ReferenceNumber: 43, + Name: "Technische Universitaet Berlin License 2.0", + LicenseID: "TU-Berlin-2.0", + SeeAlso: []string{ + "https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt", + }, + IsOsiApproved: false, + }, + "gpl-2.0+": { + Reference: "https://spdx.org/licenses/GPL-2.0+.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/GPL-2.0+.json", + ReferenceNumber: 44, + Name: "GNU General Public License v2.0 or later", + LicenseID: "GPL-2.0+", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "https://opensource.org/licenses/GPL-2.0", + }, + IsOsiApproved: true, + }, + "saxpath": { + Reference: "https://spdx.org/licenses/Saxpath.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Saxpath.json", + ReferenceNumber: 45, + Name: "Saxpath License", + LicenseID: "Saxpath", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Saxpath_License", + }, + IsOsiApproved: false, + }, + "zpl-2.0": { + Reference: "https://spdx.org/licenses/ZPL-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/ZPL-2.0.json", + ReferenceNumber: 46, + Name: "Zope Public License 2.0", + LicenseID: "ZPL-2.0", + SeeAlso: []string{ + "http://old.zope.org/Resources/License/ZPL-2.0", + "https://opensource.org/licenses/ZPL-2.0", + }, + IsOsiApproved: true, + }, + "bitstream-charter": { + Reference: "https://spdx.org/licenses/Bitstream-Charter.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Bitstream-Charter.json", + ReferenceNumber: 47, + Name: "Bitstream Charter Font License", + LicenseID: "Bitstream-Charter", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Charter#License_Text", + "https://raw.githubusercontent.com/blackhole89/notekit/master/data/fonts/Charter%20license.txt", + }, + IsOsiApproved: false, + }, + "openssl": { + Reference: "https://spdx.org/licenses/OpenSSL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OpenSSL.json", + ReferenceNumber: 48, + Name: "OpenSSL License", + LicenseID: "OpenSSL", + SeeAlso: []string{ + "http://www.openssl.org/source/license.html", + }, + IsOsiApproved: false, + }, + "clartistic": { + Reference: "https://spdx.org/licenses/ClArtistic.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/ClArtistic.json", + ReferenceNumber: 49, + Name: "Clarified Artistic License", + LicenseID: "ClArtistic", + SeeAlso: []string{ + "http://gianluca.dellavedova.org/2011/01/03/clarified-artistic-license/", + "http://www.ncftp.com/ncftp/doc/LICENSE.txt", + }, + IsOsiApproved: false, + }, + "mpl-2.0-no-copyleft-exception": { + Reference: "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.json", + ReferenceNumber: 50, + Name: "Mozilla Public License 2.0 (no copyleft exception)", + LicenseID: "MPL-2.0-no-copyleft-exception", + SeeAlso: []string{ + "https://www.mozilla.org/MPL/2.0/", + "https://opensource.org/licenses/MPL-2.0", + }, + IsOsiApproved: true, + }, + "x11": { + Reference: "https://spdx.org/licenses/X11.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/X11.json", + ReferenceNumber: 51, + Name: "X11 License", + LicenseID: "X11", + SeeAlso: []string{ + "http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3", + }, + IsOsiApproved: false, + }, + "fsfullr": { + Reference: "https://spdx.org/licenses/FSFULLR.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/FSFULLR.json", + ReferenceNumber: 52, + Name: "FSF Unlimited License (with License Retention)", + LicenseID: "FSFULLR", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant", + }, + IsOsiApproved: false, + }, + "cc-by-4.0": { + Reference: "https://spdx.org/licenses/CC-BY-4.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-4.0.json", + ReferenceNumber: 53, + Name: "Creative Commons Attribution 4.0 International", + LicenseID: "CC-BY-4.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by/4.0/legalcode", + }, + IsOsiApproved: false, + }, + "cc-by-sa-3.0-de": { + Reference: "https://spdx.org/licenses/CC-BY-SA-3.0-DE.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-SA-3.0-DE.json", + ReferenceNumber: 54, + Name: "Creative Commons Attribution Share Alike 3.0 Germany", + LicenseID: "CC-BY-SA-3.0-DE", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-sa/3.0/de/legalcode", + }, + IsOsiApproved: false, + }, + "cc-by-sa-2.5": { + Reference: "https://spdx.org/licenses/CC-BY-SA-2.5.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-SA-2.5.json", + ReferenceNumber: 55, + Name: "Creative Commons Attribution Share Alike 2.5 Generic", + LicenseID: "CC-BY-SA-2.5", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-sa/2.5/legalcode", + }, + IsOsiApproved: false, + }, + "mpeg-ssg": { + Reference: "https://spdx.org/licenses/MPEG-SSG.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MPEG-SSG.json", + ReferenceNumber: 56, + Name: "MPEG Software Simulation", + LicenseID: "MPEG-SSG", + SeeAlso: []string{ + "https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/converter/ppm/ppmtompeg/jrevdct.c#l1189", + }, + IsOsiApproved: false, + }, + "wxwindows": { + Reference: "https://spdx.org/licenses/wxWindows.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/wxWindows.json", + ReferenceNumber: 57, + Name: "wxWindows Library License", + LicenseID: "wxWindows", + SeeAlso: []string{ + "https://opensource.org/licenses/WXwindows", + }, + IsOsiApproved: true, + }, + "lppl-1.0": { + Reference: "https://spdx.org/licenses/LPPL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LPPL-1.0.json", + ReferenceNumber: 58, + Name: "LaTeX Project Public License v1.0", + LicenseID: "LPPL-1.0", + SeeAlso: []string{ + "http://www.latex-project.org/lppl/lppl-1-0.txt", + }, + IsOsiApproved: false, + }, + "lgpl-2.0": { + Reference: "https://spdx.org/licenses/LGPL-2.0.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/LGPL-2.0.json", + ReferenceNumber: 59, + Name: "GNU Library General Public License v2 only", + LicenseID: "LGPL-2.0", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html", + }, + IsOsiApproved: true, + }, + "freeimage": { + Reference: "https://spdx.org/licenses/FreeImage.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/FreeImage.json", + ReferenceNumber: 60, + Name: "FreeImage Public License v1.0", + LicenseID: "FreeImage", + SeeAlso: []string{ + "http://freeimage.sourceforge.net/freeimage-license.txt", + }, + IsOsiApproved: false, + }, + "cern-ohl-1.2": { + Reference: "https://spdx.org/licenses/CERN-OHL-1.2.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CERN-OHL-1.2.json", + ReferenceNumber: 61, + Name: "CERN Open Hardware Licence v1.2", + LicenseID: "CERN-OHL-1.2", + SeeAlso: []string{ + "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2", + }, + IsOsiApproved: false, + }, + "artistic-1.0-cl8": { + Reference: "https://spdx.org/licenses/Artistic-1.0-cl8.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Artistic-1.0-cl8.json", + ReferenceNumber: 62, + Name: "Artistic License 1.0 w/clause 8", + LicenseID: "Artistic-1.0-cl8", + SeeAlso: []string{ + "https://opensource.org/licenses/Artistic-1.0", + }, + IsOsiApproved: true, + }, + "lzma-sdk-9.22": { + Reference: "https://spdx.org/licenses/LZMA-SDK-9.22.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LZMA-SDK-9.22.json", + ReferenceNumber: 63, + Name: "LZMA SDK License (versions 9.22 and beyond)", + LicenseID: "LZMA-SDK-9.22", + SeeAlso: []string{ + "https://www.7-zip.org/sdk.html", + "https://sourceforge.net/projects/sevenzip/files/LZMA%20SDK/", + }, + IsOsiApproved: false, + }, + "bsd-3-clause-no-nuclear-license-2014": { + Reference: "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.json", + ReferenceNumber: 64, + Name: "BSD 3-Clause No Nuclear License 2014", + LicenseID: "BSD-3-Clause-No-Nuclear-License-2014", + SeeAlso: []string{ + "https://java.net/projects/javaeetutorial/pages/BerkeleyLicense", + }, + IsOsiApproved: false, + }, + "cc-by-nd-3.0-de": { + Reference: "https://spdx.org/licenses/CC-BY-ND-3.0-DE.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-ND-3.0-DE.json", + ReferenceNumber: 65, + Name: "Creative Commons Attribution No Derivatives 3.0 Germany", + LicenseID: "CC-BY-ND-3.0-DE", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nd/3.0/de/legalcode", + }, + IsOsiApproved: false, + }, + "afmparse": { + Reference: "https://spdx.org/licenses/Afmparse.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Afmparse.json", + ReferenceNumber: 66, + Name: "Afmparse License", + LicenseID: "Afmparse", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Afmparse", + }, + IsOsiApproved: false, + }, + "cern-ohl-s-2.0": { + Reference: "https://spdx.org/licenses/CERN-OHL-S-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CERN-OHL-S-2.0.json", + ReferenceNumber: 67, + Name: "CERN Open Hardware Licence Version 2 - Strongly Reciprocal", + LicenseID: "CERN-OHL-S-2.0", + SeeAlso: []string{ + "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2", + }, + IsOsiApproved: true, + }, + "doc": { + Reference: "https://spdx.org/licenses/DOC.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/DOC.json", + ReferenceNumber: 68, + Name: "DOC License", + LicenseID: "DOC", + SeeAlso: []string{ + "http://www.cs.wustl.edu/~schmidt/ACE-copying.html", + "https://www.dre.vanderbilt.edu/~schmidt/ACE-copying.html", + }, + IsOsiApproved: false, + }, + "gl2ps": { + Reference: "https://spdx.org/licenses/GL2PS.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GL2PS.json", + ReferenceNumber: 69, + Name: "GL2PS License", + LicenseID: "GL2PS", + SeeAlso: []string{ + "http://www.geuz.org/gl2ps/COPYING.GL2PS", + }, + IsOsiApproved: false, + }, + "ypl-1.1": { + Reference: "https://spdx.org/licenses/YPL-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/YPL-1.1.json", + ReferenceNumber: 70, + Name: "Yahoo! Public License v1.1", + LicenseID: "YPL-1.1", + SeeAlso: []string{ + "http://www.zimbra.com/license/yahoo_public_license_1.1.html", + }, + IsOsiApproved: false, + }, + "gfdl-1.2-only": { + Reference: "https://spdx.org/licenses/GFDL-1.2-only.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GFDL-1.2-only.json", + ReferenceNumber: 71, + Name: "GNU Free Documentation License v1.2 only", + LicenseID: "GFDL-1.2-only", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", + }, + IsOsiApproved: false, + }, + "cc-by-nc-nd-3.0": { + Reference: "https://spdx.org/licenses/CC-BY-NC-ND-3.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-ND-3.0.json", + ReferenceNumber: 72, + Name: "Creative Commons Attribution Non Commercial No Derivatives 3.0 Unported", + LicenseID: "CC-BY-NC-ND-3.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode", + }, + IsOsiApproved: false, + }, + "ecos-2.0": { + Reference: "https://spdx.org/licenses/eCos-2.0.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/eCos-2.0.json", + ReferenceNumber: 73, + Name: "eCos license version 2.0", + LicenseID: "eCos-2.0", + SeeAlso: []string{ + "https://www.gnu.org/licenses/ecos-license.html", + }, + IsOsiApproved: false, + }, + "ofl-1.0-no-rfn": { + Reference: "https://spdx.org/licenses/OFL-1.0-no-RFN.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OFL-1.0-no-RFN.json", + ReferenceNumber: 74, + Name: "SIL Open Font License 1.0 with no Reserved Font Name", + LicenseID: "OFL-1.0-no-RFN", + SeeAlso: []string{ + "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web", + }, + IsOsiApproved: false, + }, + "sendmail": { + Reference: "https://spdx.org/licenses/Sendmail.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Sendmail.json", + ReferenceNumber: 75, + Name: "Sendmail License", + LicenseID: "Sendmail", + SeeAlso: []string{ + "http://www.sendmail.com/pdfs/open_source/sendmail_license.pdf", + "https://web.archive.org/web/20160322142305/https://www.sendmail.com/pdfs/open_source/sendmail_license.pdf", + }, + IsOsiApproved: false, + }, + "agpl-3.0-only": { + Reference: "https://spdx.org/licenses/AGPL-3.0-only.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/AGPL-3.0-only.json", + ReferenceNumber: 76, + Name: "GNU Affero General Public License v3.0 only", + LicenseID: "AGPL-3.0-only", + SeeAlso: []string{ + "https://www.gnu.org/licenses/agpl.txt", + "https://opensource.org/licenses/AGPL-3.0", + }, + IsOsiApproved: true, + }, + "cecill-2.0": { + Reference: "https://spdx.org/licenses/CECILL-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CECILL-2.0.json", + ReferenceNumber: 77, + Name: "CeCILL Free Software License Agreement v2.0", + LicenseID: "CECILL-2.0", + SeeAlso: []string{ + "http://www.cecill.info/licences/Licence_CeCILL_V2-en.html", + }, + IsOsiApproved: false, + }, + "mit-advertising": { + Reference: "https://spdx.org/licenses/MIT-advertising.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MIT-advertising.json", + ReferenceNumber: 78, + Name: "Enlightenment License (e16)", + LicenseID: "MIT-advertising", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising", + }, + IsOsiApproved: false, + }, + "snprintf": { + Reference: "https://spdx.org/licenses/snprintf.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/snprintf.json", + ReferenceNumber: 79, + Name: "snprintf License", + LicenseID: "snprintf", + SeeAlso: []string{ + "https://github.com/openssh/openssh-portable/blob/master/openbsd-compat/bsd-snprintf.c#L2", + }, + IsOsiApproved: false, + }, + "cc-by-nd-3.0": { + Reference: "https://spdx.org/licenses/CC-BY-ND-3.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-ND-3.0.json", + ReferenceNumber: 80, + Name: "Creative Commons Attribution No Derivatives 3.0 Unported", + LicenseID: "CC-BY-ND-3.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nd/3.0/legalcode", + }, + IsOsiApproved: false, + }, + "cc-by-2.5-au": { + Reference: "https://spdx.org/licenses/CC-BY-2.5-AU.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-2.5-AU.json", + ReferenceNumber: 81, + Name: "Creative Commons Attribution 2.5 Australia", + LicenseID: "CC-BY-2.5-AU", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by/2.5/au/legalcode", + }, + IsOsiApproved: false, + }, + "naist-2003": { + Reference: "https://spdx.org/licenses/NAIST-2003.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/NAIST-2003.json", + ReferenceNumber: 82, + Name: "Nara Institute of Science and Technology License (2003)", + LicenseID: "NAIST-2003", + SeeAlso: []string{ + "https://enterprise.dejacode.com/licenses/public/naist-2003/#license-text", + "https://github.com/nodejs/node/blob/4a19cc8947b1bba2b2d27816ec3d0edf9b28e503/LICENSE#L343", + }, + IsOsiApproved: false, + }, + "nbpl-1.0": { + Reference: "https://spdx.org/licenses/NBPL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/NBPL-1.0.json", + ReferenceNumber: 83, + Name: "Net Boolean Public License v1", + LicenseID: "NBPL-1.0", + SeeAlso: []string{ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=37b4b3f6cc4bf34e1d3dec61e69914b9819d8894", + }, + IsOsiApproved: false, + }, + "ruby": { + Reference: "https://spdx.org/licenses/Ruby.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Ruby.json", + ReferenceNumber: 84, + Name: "Ruby License", + LicenseID: "Ruby", + SeeAlso: []string{ + "https://www.ruby-lang.org/en/about/license.txt", + }, + IsOsiApproved: false, + }, + "hpnd-doc": { + Reference: "https://spdx.org/licenses/HPND-doc.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/HPND-doc.json", + ReferenceNumber: 85, + Name: "Historical Permission Notice and Disclaimer - documentation variant", + LicenseID: "HPND-doc", + SeeAlso: []string{ + "https://gitlab.freedesktop.org/xorg/lib/libxext/-/blob/master/COPYING?ref_type=heads#L185-197", + "https://gitlab.freedesktop.org/xorg/lib/libxtst/-/blob/master/COPYING?ref_type=heads#L70-77", + }, + IsOsiApproved: false, + }, + "osl-2.0": { + Reference: "https://spdx.org/licenses/OSL-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OSL-2.0.json", + ReferenceNumber: 86, + Name: "Open Software License 2.0", + LicenseID: "OSL-2.0", + SeeAlso: []string{ + "http://web.archive.org/web/20041020171434/http://www.rosenlaw.com/osl2.0.html", + }, + IsOsiApproved: true, + }, + "gpl-2.0-only": { + Reference: "https://spdx.org/licenses/GPL-2.0-only.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GPL-2.0-only.json", + ReferenceNumber: 87, + Name: "GNU General Public License v2.0 only", + LicenseID: "GPL-2.0-only", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "https://opensource.org/licenses/GPL-2.0", + }, + IsOsiApproved: true, + }, + "smppl": { + Reference: "https://spdx.org/licenses/SMPPL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SMPPL.json", + ReferenceNumber: 88, + Name: "Secure Messaging Protocol Public License", + LicenseID: "SMPPL", + SeeAlso: []string{ + "https://github.com/dcblake/SMP/blob/master/Documentation/License.txt", + }, + IsOsiApproved: false, + }, + "lzma-sdk-9.11-to-9.20": { + Reference: "https://spdx.org/licenses/LZMA-SDK-9.11-to-9.20.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LZMA-SDK-9.11-to-9.20.json", + ReferenceNumber: 89, + Name: "LZMA SDK License (versions 9.11 to 9.20)", + LicenseID: "LZMA-SDK-9.11-to-9.20", + SeeAlso: []string{ + "https://www.7-zip.org/sdk.html", + "https://sourceforge.net/projects/sevenzip/files/LZMA%20SDK/", + }, + IsOsiApproved: false, + }, + "oldap-2.6": { + Reference: "https://spdx.org/licenses/OLDAP-2.6.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OLDAP-2.6.json", + ReferenceNumber: 90, + Name: "Open LDAP Public License v2.6", + LicenseID: "OLDAP-2.6", + SeeAlso: []string{ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=1cae062821881f41b73012ba816434897abf4205", + }, + IsOsiApproved: false, + }, + "parity-7.0.0": { + Reference: "https://spdx.org/licenses/Parity-7.0.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Parity-7.0.0.json", + ReferenceNumber: 91, + Name: "The Parity Public License 7.0.0", + LicenseID: "Parity-7.0.0", + SeeAlso: []string{ + "https://paritylicense.com/versions/7.0.0.html", + }, + IsOsiApproved: false, + }, + "clips": { + Reference: "https://spdx.org/licenses/Clips.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Clips.json", + ReferenceNumber: 92, + Name: "Clips License", + LicenseID: "Clips", + SeeAlso: []string{ + "https://github.com/DrItanium/maya/blob/master/LICENSE.CLIPS", + }, + IsOsiApproved: false, + }, + "symlinks": { + Reference: "https://spdx.org/licenses/Symlinks.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Symlinks.json", + ReferenceNumber: 93, + Name: "Symlinks License", + LicenseID: "Symlinks", + SeeAlso: []string{ + "https://www.mail-archive.com/debian-bugs-rc@lists.debian.org/msg11494.html", + }, + IsOsiApproved: false, + }, + "oldap-1.1": { + Reference: "https://spdx.org/licenses/OLDAP-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OLDAP-1.1.json", + ReferenceNumber: 94, + Name: "Open LDAP Public License v1.1", + LicenseID: "OLDAP-1.1", + SeeAlso: []string{ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=806557a5ad59804ef3a44d5abfbe91d706b0791f", + }, + IsOsiApproved: false, + }, + "nicta-1.0": { + Reference: "https://spdx.org/licenses/NICTA-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/NICTA-1.0.json", + ReferenceNumber: 95, + Name: "NICTA Public Software License, Version 1.0", + LicenseID: "NICTA-1.0", + SeeAlso: []string{ + "https://opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt", + }, + IsOsiApproved: false, + }, + "python-ldap": { + Reference: "https://spdx.org/licenses/python-ldap.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/python-ldap.json", + ReferenceNumber: 96, + Name: "Python ldap License", + LicenseID: "python-ldap", + SeeAlso: []string{ + "https://github.com/zdohnal/hplip/blob/master/base/ldif.py", + "https://sourceforge.net/projects/hplip/files/hplip/3.23.5/hplip-3.23.5.tar.gz/download", + }, + IsOsiApproved: false, + }, + "gpl-1.0": { + Reference: "https://spdx.org/licenses/GPL-1.0.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/GPL-1.0.json", + ReferenceNumber: 97, + Name: "GNU General Public License v1.0 only", + LicenseID: "GPL-1.0", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + }, + IsOsiApproved: false, + }, + "liliq-rplus-1.1": { + Reference: "https://spdx.org/licenses/LiLiQ-Rplus-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LiLiQ-Rplus-1.1.json", + ReferenceNumber: 98, + Name: "Licence Libre du Québec – Réciprocité forte version 1.1", + LicenseID: "LiLiQ-Rplus-1.1", + SeeAlso: []string{ + "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/", + "http://opensource.org/licenses/LiLiQ-Rplus-1.1", + }, + IsOsiApproved: true, + }, + "bsd-2-clause-patent": { + Reference: "https://spdx.org/licenses/BSD-2-Clause-Patent.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-2-Clause-Patent.json", + ReferenceNumber: 99, + Name: "BSD-2-Clause Plus Patent License", + LicenseID: "BSD-2-Clause-Patent", + SeeAlso: []string{ + "https://opensource.org/licenses/BSDplusPatent", + }, + IsOsiApproved: true, + }, + "cc-by-sa-1.0": { + Reference: "https://spdx.org/licenses/CC-BY-SA-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-SA-1.0.json", + ReferenceNumber: 100, + Name: "Creative Commons Attribution Share Alike 1.0 Generic", + LicenseID: "CC-BY-SA-1.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-sa/1.0/legalcode", + }, + IsOsiApproved: false, + }, + "lgpl-2.0-or-later": { + Reference: "https://spdx.org/licenses/LGPL-2.0-or-later.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LGPL-2.0-or-later.json", + ReferenceNumber: 101, + Name: "GNU Library General Public License v2 or later", + LicenseID: "LGPL-2.0-or-later", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html", + }, + IsOsiApproved: true, + }, + "intel-acpi": { + Reference: "https://spdx.org/licenses/Intel-ACPI.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Intel-ACPI.json", + ReferenceNumber: 102, + Name: "Intel ACPI Software License Agreement", + LicenseID: "Intel-ACPI", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement", + }, + IsOsiApproved: false, + }, + "cern-ohl-p-2.0": { + Reference: "https://spdx.org/licenses/CERN-OHL-P-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CERN-OHL-P-2.0.json", + ReferenceNumber: 103, + Name: "CERN Open Hardware Licence Version 2 - Permissive", + LicenseID: "CERN-OHL-P-2.0", + SeeAlso: []string{ + "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2", + }, + IsOsiApproved: true, + }, + "ssh-short": { + Reference: "https://spdx.org/licenses/SSH-short.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SSH-short.json", + ReferenceNumber: 104, + Name: "SSH short notice", + LicenseID: "SSH-short", + SeeAlso: []string{ + "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/pathnames.h", + "http://web.mit.edu/kolya/.f/root/athena.mit.edu/sipb.mit.edu/project/openssh/OldFiles/src/openssh-2.9.9p2/ssh-add.1", + "https://joinup.ec.europa.eu/svn/lesoll/trunk/italc/lib/src/dsa_key.cpp", + }, + IsOsiApproved: false, + }, + "kazlib": { + Reference: "https://spdx.org/licenses/Kazlib.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Kazlib.json", + ReferenceNumber: 105, + Name: "Kazlib License", + LicenseID: "Kazlib", + SeeAlso: []string{ + "http://git.savannah.gnu.org/cgit/kazlib.git/tree/except.c?id=0062df360c2d17d57f6af19b0e444c51feb99036", + }, + IsOsiApproved: false, + }, + "tosl": { + Reference: "https://spdx.org/licenses/TOSL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/TOSL.json", + ReferenceNumber: 106, + Name: "Trusster Open Source License", + LicenseID: "TOSL", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/TOSL", + }, + IsOsiApproved: false, + }, + "glwtpl": { + Reference: "https://spdx.org/licenses/GLWTPL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GLWTPL.json", + ReferenceNumber: 107, + Name: "Good Luck With That Public License", + LicenseID: "GLWTPL", + SeeAlso: []string{ + "https://github.com/me-shaon/GLWTPL/commit/da5f6bc734095efbacb442c0b31e33a65b9d6e85", + }, + IsOsiApproved: false, + }, + "bsd-3-clause-modification": { + Reference: "https://spdx.org/licenses/BSD-3-Clause-Modification.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-3-Clause-Modification.json", + ReferenceNumber: 108, + Name: "BSD 3-Clause Modification", + LicenseID: "BSD-3-Clause-Modification", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing:BSD#Modification_Variant", + }, + IsOsiApproved: false, + }, + "oldap-2.2": { + Reference: "https://spdx.org/licenses/OLDAP-2.2.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OLDAP-2.2.json", + ReferenceNumber: 109, + Name: "Open LDAP Public License v2.2", + LicenseID: "OLDAP-2.2", + SeeAlso: []string{ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=470b0c18ec67621c85881b2733057fecf4a1acc3", + }, + IsOsiApproved: false, + }, + "bsd-3-clause-no-nuclear-license": { + Reference: "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.json", + ReferenceNumber: 110, + Name: "BSD 3-Clause No Nuclear License", + LicenseID: "BSD-3-Clause-No-Nuclear-License", + SeeAlso: []string{ + "http://download.oracle.com/otn-pub/java/licenses/bsd.txt?AuthParam=1467140197_43d516ce1776bd08a58235a7785be1cc", + }, + IsOsiApproved: false, + }, + "torque-1.1": { + Reference: "https://spdx.org/licenses/TORQUE-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/TORQUE-1.1.json", + ReferenceNumber: 111, + Name: "TORQUE v2.5+ Software License v1.1", + LicenseID: "TORQUE-1.1", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/TORQUEv1.1", + }, + IsOsiApproved: false, + }, + "psf-2.0": { + Reference: "https://spdx.org/licenses/PSF-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/PSF-2.0.json", + ReferenceNumber: 112, + Name: "Python Software Foundation License 2.0", + LicenseID: "PSF-2.0", + SeeAlso: []string{ + "https://opensource.org/licenses/Python-2.0", + }, + IsOsiApproved: false, + }, + "cddl-1.1": { + Reference: "https://spdx.org/licenses/CDDL-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CDDL-1.1.json", + ReferenceNumber: 113, + Name: "Common Development and Distribution License 1.1", + LicenseID: "CDDL-1.1", + SeeAlso: []string{ + "http://glassfish.java.net/public/CDDL+GPL_1_1.html", + "https://javaee.github.io/glassfish/LICENSE", + }, + IsOsiApproved: false, + }, + "cdl-1.0": { + Reference: "https://spdx.org/licenses/CDL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CDL-1.0.json", + ReferenceNumber: 114, + Name: "Common Documentation License 1.0", + LicenseID: "CDL-1.0", + SeeAlso: []string{ + "http://www.opensource.apple.com/cdl/", + "https://fedoraproject.org/wiki/Licensing/Common_Documentation_License", + "https://www.gnu.org/licenses/license-list.html#ACDL", + }, + IsOsiApproved: false, + }, + "oset-pl-2.1": { + Reference: "https://spdx.org/licenses/OSET-PL-2.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OSET-PL-2.1.json", + ReferenceNumber: 115, + Name: "OSET Public License version 2.1", + LicenseID: "OSET-PL-2.1", + SeeAlso: []string{ + "http://www.osetfoundation.org/public-license", + "https://opensource.org/licenses/OPL-2.1", + }, + IsOsiApproved: true, + }, + "eupl-1.2": { + Reference: "https://spdx.org/licenses/EUPL-1.2.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/EUPL-1.2.json", + ReferenceNumber: 116, + Name: "European Union Public License 1.2", + LicenseID: "EUPL-1.2", + SeeAlso: []string{ + "https://joinup.ec.europa.eu/page/eupl-text-11-12", + "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl_v1.2_en.pdf", + "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/2020-03/EUPL-1.2%20EN.txt", + "https://joinup.ec.europa.eu/sites/default/files/inline-files/EUPL%20v1_2%20EN(1).txt", + "http://eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri=CELEX:32017D0863", + "https://opensource.org/licenses/EUPL-1.2", + }, + IsOsiApproved: true, + }, + "standardml-nj": { + Reference: "https://spdx.org/licenses/StandardML-NJ.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/StandardML-NJ.json", + ReferenceNumber: 117, + Name: "Standard ML of New Jersey License", + LicenseID: "StandardML-NJ", + SeeAlso: []string{ + "https://www.smlnj.org/license.html", + }, + IsOsiApproved: false, + }, + "cal-1.0": { + Reference: "https://spdx.org/licenses/CAL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CAL-1.0.json", + ReferenceNumber: 118, + Name: "Cryptographic Autonomy License 1.0", + LicenseID: "CAL-1.0", + SeeAlso: []string{ + "http://cryptographicautonomylicense.com/license-text.html", + "https://opensource.org/licenses/CAL-1.0", + }, + IsOsiApproved: true, + }, + "opl-uk-3.0": { + Reference: "https://spdx.org/licenses/OPL-UK-3.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OPL-UK-3.0.json", + ReferenceNumber: 119, + Name: "United Kingdom Open Parliament Licence v3.0", + LicenseID: "OPL-UK-3.0", + SeeAlso: []string{ + "https://www.parliament.uk/site-information/copyright-parliament/open-parliament-licence/", + }, + IsOsiApproved: false, + }, + "cronyx": { + Reference: "https://spdx.org/licenses/Cronyx.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Cronyx.json", + ReferenceNumber: 120, + Name: "Cronyx License", + LicenseID: "Cronyx", + SeeAlso: []string{ + "https://gitlab.freedesktop.org/xorg/font/alias/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/font/cronyx-cyrillic/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/font/misc-cyrillic/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/font/screen-cyrillic/-/blob/master/COPYING", + }, + IsOsiApproved: false, + }, + "gfdl-1.1-or-later": { + Reference: "https://spdx.org/licenses/GFDL-1.1-or-later.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GFDL-1.1-or-later.json", + ReferenceNumber: 121, + Name: "GNU Free Documentation License v1.1 or later", + LicenseID: "GFDL-1.1-or-later", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", + }, + IsOsiApproved: false, + }, + "afl-2.1": { + Reference: "https://spdx.org/licenses/AFL-2.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/AFL-2.1.json", + ReferenceNumber: 122, + Name: "Academic Free License v2.1", + LicenseID: "AFL-2.1", + SeeAlso: []string{ + "http://opensource.linux-mirror.org/licenses/afl-2.1.txt", + }, + IsOsiApproved: true, + }, + "afl-1.2": { + Reference: "https://spdx.org/licenses/AFL-1.2.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/AFL-1.2.json", + ReferenceNumber: 123, + Name: "Academic Free License v1.2", + LicenseID: "AFL-1.2", + SeeAlso: []string{ + "http://opensource.linux-mirror.org/licenses/afl-1.2.txt", + "http://wayback.archive.org/web/20021204204652/http://www.opensource.org/licenses/academic.php", + }, + IsOsiApproved: true, + }, + "fdk-aac": { + Reference: "https://spdx.org/licenses/FDK-AAC.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/FDK-AAC.json", + ReferenceNumber: 124, + Name: "Fraunhofer FDK AAC Codec Library", + LicenseID: "FDK-AAC", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/FDK-AAC", + "https://directory.fsf.org/wiki/License:Fdk", + }, + IsOsiApproved: false, + }, + "bsd-1-clause": { + Reference: "https://spdx.org/licenses/BSD-1-Clause.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-1-Clause.json", + ReferenceNumber: 125, + Name: "BSD 1-Clause License", + LicenseID: "BSD-1-Clause", + SeeAlso: []string{ + "https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=326823", + }, + IsOsiApproved: true, + }, + "psfrag": { + Reference: "https://spdx.org/licenses/psfrag.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/psfrag.json", + ReferenceNumber: 126, + Name: "psfrag License", + LicenseID: "psfrag", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/psfrag", + }, + IsOsiApproved: false, + }, + "ofl-1.1-rfn": { + Reference: "https://spdx.org/licenses/OFL-1.1-RFN.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OFL-1.1-RFN.json", + ReferenceNumber: 127, + Name: "SIL Open Font License 1.1 with Reserved Font Name", + LicenseID: "OFL-1.1-RFN", + SeeAlso: []string{ + "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web", + "https://opensource.org/licenses/OFL-1.1", + }, + IsOsiApproved: true, + }, + "cecill-1.0": { + Reference: "https://spdx.org/licenses/CECILL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CECILL-1.0.json", + ReferenceNumber: 128, + Name: "CeCILL Free Software License Agreement v1.0", + LicenseID: "CECILL-1.0", + SeeAlso: []string{ + "http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html", + }, + IsOsiApproved: false, + }, + "tcp-wrappers": { + Reference: "https://spdx.org/licenses/TCP-wrappers.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/TCP-wrappers.json", + ReferenceNumber: 129, + Name: "TCP Wrappers License", + LicenseID: "TCP-wrappers", + SeeAlso: []string{ + "http://rc.quest.com/topics/openssh/license.php#tcpwrappers", + }, + IsOsiApproved: false, + }, + "cc-by-nc-nd-2.0": { + Reference: "https://spdx.org/licenses/CC-BY-NC-ND-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-ND-2.0.json", + ReferenceNumber: 130, + Name: "Creative Commons Attribution Non Commercial No Derivatives 2.0 Generic", + LicenseID: "CC-BY-NC-ND-2.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode", + }, + IsOsiApproved: false, + }, + "apl-1.0": { + Reference: "https://spdx.org/licenses/APL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/APL-1.0.json", + ReferenceNumber: 131, + Name: "Adaptive Public License 1.0", + LicenseID: "APL-1.0", + SeeAlso: []string{ + "https://opensource.org/licenses/APL-1.0", + }, + IsOsiApproved: true, + }, + "knuth-ctan": { + Reference: "https://spdx.org/licenses/Knuth-CTAN.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Knuth-CTAN.json", + ReferenceNumber: 132, + Name: "Knuth CTAN License", + LicenseID: "Knuth-CTAN", + SeeAlso: []string{ + "https://ctan.org/license/knuth", + }, + IsOsiApproved: false, + }, + "mit-testregex": { + Reference: "https://spdx.org/licenses/MIT-testregex.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MIT-testregex.json", + ReferenceNumber: 133, + Name: "MIT testregex Variant", + LicenseID: "MIT-testregex", + SeeAlso: []string{ + "https://github.com/dotnet/runtime/blob/55e1ac7c07df62c4108d4acedf78f77574470ce5/src/libraries/System.Text.RegularExpressions/tests/FunctionalTests/AttRegexTests.cs#L12-L28", + }, + IsOsiApproved: false, + }, + "osl-3.0": { + Reference: "https://spdx.org/licenses/OSL-3.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OSL-3.0.json", + ReferenceNumber: 134, + Name: "Open Software License 3.0", + LicenseID: "OSL-3.0", + SeeAlso: []string{ + "https://web.archive.org/web/20120101081418/http://rosenlaw.com:80/OSL3.0.htm", + "https://opensource.org/licenses/OSL-3.0", + }, + IsOsiApproved: true, + }, + "linux-man-pages-copyleft-2-para": { + Reference: "https://spdx.org/licenses/Linux-man-pages-copyleft-2-para.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Linux-man-pages-copyleft-2-para.json", + ReferenceNumber: 135, + Name: "Linux man-pages Copyleft - 2 paragraphs", + LicenseID: "Linux-man-pages-copyleft-2-para", + SeeAlso: []string{ + "https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/man2/move_pages.2#n5", + "https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/man2/migrate_pages.2#n8", + }, + IsOsiApproved: false, + }, + "oldap-2.0.1": { + Reference: "https://spdx.org/licenses/OLDAP-2.0.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OLDAP-2.0.1.json", + ReferenceNumber: 136, + Name: "Open LDAP Public License v2.0.1", + LicenseID: "OLDAP-2.0.1", + SeeAlso: []string{ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b6d68acd14e51ca3aab4428bf26522aa74873f0e", + }, + IsOsiApproved: false, + }, + "beerware": { + Reference: "https://spdx.org/licenses/Beerware.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Beerware.json", + ReferenceNumber: 137, + Name: "Beerware License", + LicenseID: "Beerware", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Beerware", + "https://people.freebsd.org/~phk/", + }, + IsOsiApproved: false, + }, + "apache-2.0": { + Reference: "https://spdx.org/licenses/Apache-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Apache-2.0.json", + ReferenceNumber: 138, + Name: "Apache License 2.0", + LicenseID: "Apache-2.0", + SeeAlso: []string{ + "https://www.apache.org/licenses/LICENSE-2.0", + "https://opensource.org/licenses/Apache-2.0", + }, + IsOsiApproved: true, + }, + "cal-1.0-combined-work-exception": { + Reference: "https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception.json", + ReferenceNumber: 139, + Name: "Cryptographic Autonomy License 1.0 (Combined Work Exception)", + LicenseID: "CAL-1.0-Combined-Work-Exception", + SeeAlso: []string{ + "http://cryptographicautonomylicense.com/license-text.html", + "https://opensource.org/licenses/CAL-1.0", + }, + IsOsiApproved: true, + }, + "gpl-2.0-with-autoconf-exception": { + Reference: "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.json", + ReferenceNumber: 140, + Name: "GNU General Public License v2.0 w/Autoconf exception", + LicenseID: "GPL-2.0-with-autoconf-exception", + SeeAlso: []string{ + "http://ac-archive.sourceforge.net/doc/copyright.html", + }, + IsOsiApproved: false, + }, + "bsd-3-clause-sun": { + Reference: "https://spdx.org/licenses/BSD-3-Clause-Sun.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-3-Clause-Sun.json", + ReferenceNumber: 141, + Name: "BSD 3-Clause Sun Microsystems", + LicenseID: "BSD-3-Clause-Sun", + SeeAlso: []string{ + "https://github.com/xmlark/msv/blob/b9316e2f2270bc1606952ea4939ec87fbba157f3/xsdlib/src/main/java/com/sun/msv/datatype/regexp/InternalImpl.java", + }, + IsOsiApproved: false, + }, + "makeindex": { + Reference: "https://spdx.org/licenses/MakeIndex.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MakeIndex.json", + ReferenceNumber: 142, + Name: "MakeIndex License", + LicenseID: "MakeIndex", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/MakeIndex", + }, + IsOsiApproved: false, + }, + "bsd-2-clause-netbsd": { + Reference: "https://spdx.org/licenses/BSD-2-Clause-NetBSD.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/BSD-2-Clause-NetBSD.json", + ReferenceNumber: 143, + Name: "BSD 2-Clause NetBSD License", + LicenseID: "BSD-2-Clause-NetBSD", + SeeAlso: []string{ + "http://www.netbsd.org/about/redistribution.html#default", + }, + IsOsiApproved: false, + }, + "gfdl-1.1-no-invariants-only": { + Reference: "https://spdx.org/licenses/GFDL-1.1-no-invariants-only.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GFDL-1.1-no-invariants-only.json", + ReferenceNumber: 144, + Name: "GNU Free Documentation License v1.1 only - no invariants", + LicenseID: "GFDL-1.1-no-invariants-only", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", + }, + IsOsiApproved: false, + }, + "ucl-1.0": { + Reference: "https://spdx.org/licenses/UCL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/UCL-1.0.json", + ReferenceNumber: 145, + Name: "Upstream Compatibility License v1.0", + LicenseID: "UCL-1.0", + SeeAlso: []string{ + "https://opensource.org/licenses/UCL-1.0", + }, + IsOsiApproved: true, + }, + "nasa-1.3": { + Reference: "https://spdx.org/licenses/NASA-1.3.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/NASA-1.3.json", + ReferenceNumber: 146, + Name: "NASA Open Source Agreement 1.3", + LicenseID: "NASA-1.3", + SeeAlso: []string{ + "http://ti.arc.nasa.gov/opensource/nosa/", + "https://opensource.org/licenses/NASA-1.3", + }, + IsOsiApproved: true, + }, + "ijg": { + Reference: "https://spdx.org/licenses/IJG.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/IJG.json", + ReferenceNumber: 147, + Name: "Independent JPEG Group License", + LicenseID: "IJG", + SeeAlso: []string{ + "http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2", + }, + IsOsiApproved: false, + }, + "xfig": { + Reference: "https://spdx.org/licenses/Xfig.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Xfig.json", + ReferenceNumber: 148, + Name: "Xfig License", + LicenseID: "Xfig", + SeeAlso: []string{ + "https://github.com/Distrotech/transfig/blob/master/transfig/transfig.c", + "https://fedoraproject.org/wiki/Licensing:MIT#Xfig_Variant", + "https://sourceforge.net/p/mcj/xfig/ci/master/tree/src/Makefile.am", + }, + IsOsiApproved: false, + }, + "noweb": { + Reference: "https://spdx.org/licenses/Noweb.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Noweb.json", + ReferenceNumber: 149, + Name: "Noweb License", + LicenseID: "Noweb", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Noweb", + }, + IsOsiApproved: false, + }, + "mup": { + Reference: "https://spdx.org/licenses/Mup.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Mup.json", + ReferenceNumber: 150, + Name: "Mup License", + LicenseID: "Mup", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Mup", + }, + IsOsiApproved: false, + }, + "cc-by-2.0": { + Reference: "https://spdx.org/licenses/CC-BY-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-2.0.json", + ReferenceNumber: 151, + Name: "Creative Commons Attribution 2.0 Generic", + LicenseID: "CC-BY-2.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by/2.0/legalcode", + }, + IsOsiApproved: false, + }, + "odc-by-1.0": { + Reference: "https://spdx.org/licenses/ODC-By-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/ODC-By-1.0.json", + ReferenceNumber: 152, + Name: "Open Data Commons Attribution License v1.0", + LicenseID: "ODC-By-1.0", + SeeAlso: []string{ + "https://opendatacommons.org/licenses/by/1.0/", + }, + IsOsiApproved: false, + }, + "blessing": { + Reference: "https://spdx.org/licenses/blessing.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/blessing.json", + ReferenceNumber: 153, + Name: "SQLite Blessing", + LicenseID: "blessing", + SeeAlso: []string{ + "https://www.sqlite.org/src/artifact/e33a4df7e32d742a?ln=4-9", + "https://sqlite.org/src/artifact/df5091916dbb40e6", + }, + IsOsiApproved: false, + }, + "ssh-openssh": { + Reference: "https://spdx.org/licenses/SSH-OpenSSH.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SSH-OpenSSH.json", + ReferenceNumber: 154, + Name: "SSH OpenSSH license", + LicenseID: "SSH-OpenSSH", + SeeAlso: []string{ + "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/LICENCE#L10", + }, + IsOsiApproved: false, + }, + "cc-by-nc-2.0": { + Reference: "https://spdx.org/licenses/CC-BY-NC-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-2.0.json", + ReferenceNumber: 155, + Name: "Creative Commons Attribution Non Commercial 2.0 Generic", + LicenseID: "CC-BY-NC-2.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc/2.0/legalcode", + }, + IsOsiApproved: false, + }, + "lppl-1.2": { + Reference: "https://spdx.org/licenses/LPPL-1.2.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LPPL-1.2.json", + ReferenceNumber: 156, + Name: "LaTeX Project Public License v1.2", + LicenseID: "LPPL-1.2", + SeeAlso: []string{ + "http://www.latex-project.org/lppl/lppl-1-2.txt", + }, + IsOsiApproved: false, + }, + "gfdl-1.3-invariants-only": { + Reference: "https://spdx.org/licenses/GFDL-1.3-invariants-only.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GFDL-1.3-invariants-only.json", + ReferenceNumber: 157, + Name: "GNU Free Documentation License v1.3 only - invariants", + LicenseID: "GFDL-1.3-invariants-only", + SeeAlso: []string{ + "https://www.gnu.org/licenses/fdl-1.3.txt", + }, + IsOsiApproved: false, + }, + "gfdl-1.2-no-invariants-only": { + Reference: "https://spdx.org/licenses/GFDL-1.2-no-invariants-only.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GFDL-1.2-no-invariants-only.json", + ReferenceNumber: 158, + Name: "GNU Free Documentation License v1.2 only - no invariants", + LicenseID: "GFDL-1.2-no-invariants-only", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", + }, + IsOsiApproved: false, + }, + "ofl-1.0": { + Reference: "https://spdx.org/licenses/OFL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OFL-1.0.json", + ReferenceNumber: 159, + Name: "SIL Open Font License 1.0", + LicenseID: "OFL-1.0", + SeeAlso: []string{ + "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web", + }, + IsOsiApproved: false, + }, + "sissl-1.2": { + Reference: "https://spdx.org/licenses/SISSL-1.2.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SISSL-1.2.json", + ReferenceNumber: 160, + Name: "Sun Industry Standards Source License v1.2", + LicenseID: "SISSL-1.2", + SeeAlso: []string{ + "http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html", + }, + IsOsiApproved: false, + }, + "tpl-1.0": { + Reference: "https://spdx.org/licenses/TPL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/TPL-1.0.json", + ReferenceNumber: 161, + Name: "THOR Public License 1.0", + LicenseID: "TPL-1.0", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing:ThorPublicLicense", + }, + IsOsiApproved: false, + }, + "lsof": { + Reference: "https://spdx.org/licenses/lsof.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/lsof.json", + ReferenceNumber: 162, + Name: "lsof License", + LicenseID: "lsof", + SeeAlso: []string{ + "https://github.com/lsof-org/lsof/blob/master/COPYING", + }, + IsOsiApproved: false, + }, + "agpl-1.0-or-later": { + Reference: "https://spdx.org/licenses/AGPL-1.0-or-later.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/AGPL-1.0-or-later.json", + ReferenceNumber: 163, + Name: "Affero General Public License v1.0 or later", + LicenseID: "AGPL-1.0-or-later", + SeeAlso: []string{ + "http://www.affero.org/oagpl.html", + }, + IsOsiApproved: false, + }, + "mitnfa": { + Reference: "https://spdx.org/licenses/MITNFA.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MITNFA.json", + ReferenceNumber: 164, + Name: "MIT +no-false-attribs license", + LicenseID: "MITNFA", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/MITNFA", + }, + IsOsiApproved: false, + }, + "metamail": { + Reference: "https://spdx.org/licenses/metamail.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/metamail.json", + ReferenceNumber: 165, + Name: "metamail License", + LicenseID: "metamail", + SeeAlso: []string{ + "https://github.com/Dual-Life/mime-base64/blob/master/Base64.xs#L12", + }, + IsOsiApproved: false, + }, + "imlib2": { + Reference: "https://spdx.org/licenses/Imlib2.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Imlib2.json", + ReferenceNumber: 166, + Name: "Imlib2 License", + LicenseID: "Imlib2", + SeeAlso: []string{ + "http://trac.enlightenment.org/e/browser/trunk/imlib2/COPYING", + "https://git.enlightenment.org/legacy/imlib2.git/tree/COPYING", + }, + IsOsiApproved: false, + }, + "afl-2.0": { + Reference: "https://spdx.org/licenses/AFL-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/AFL-2.0.json", + ReferenceNumber: 167, + Name: "Academic Free License v2.0", + LicenseID: "AFL-2.0", + SeeAlso: []string{ + "http://wayback.archive.org/web/20060924134533/http://www.opensource.org/licenses/afl-2.0.txt", + }, + IsOsiApproved: true, + }, + "eupl-1.0": { + Reference: "https://spdx.org/licenses/EUPL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/EUPL-1.0.json", + ReferenceNumber: 168, + Name: "European Union Public License 1.0", + LicenseID: "EUPL-1.0", + SeeAlso: []string{ + "http://ec.europa.eu/idabc/en/document/7330.html", + "http://ec.europa.eu/idabc/servlets/Doc027f.pdf?id=31096", + }, + IsOsiApproved: false, + }, + "aal": { + Reference: "https://spdx.org/licenses/AAL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/AAL.json", + ReferenceNumber: 169, + Name: "Attribution Assurance License", + LicenseID: "AAL", + SeeAlso: []string{ + "https://opensource.org/licenses/attribution", + }, + IsOsiApproved: true, + }, + "ssh-keyscan": { + Reference: "https://spdx.org/licenses/ssh-keyscan.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/ssh-keyscan.json", + ReferenceNumber: 170, + Name: "ssh-keyscan License", + LicenseID: "ssh-keyscan", + SeeAlso: []string{ + "https://github.com/openssh/openssh-portable/blob/master/LICENCE#L82", + }, + IsOsiApproved: false, + }, + "soundex": { + Reference: "https://spdx.org/licenses/Soundex.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Soundex.json", + ReferenceNumber: 171, + Name: "Soundex License", + LicenseID: "Soundex", + SeeAlso: []string{ + "https://metacpan.org/release/RJBS/Text-Soundex-3.05/source/Soundex.pm#L3-11", + }, + IsOsiApproved: false, + }, + "w3c-19980720": { + Reference: "https://spdx.org/licenses/W3C-19980720.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/W3C-19980720.json", + ReferenceNumber: 172, + Name: "W3C Software Notice and License (1998-07-20)", + LicenseID: "W3C-19980720", + SeeAlso: []string{ + "http://www.w3.org/Consortium/Legal/copyright-software-19980720.html", + }, + IsOsiApproved: false, + }, + "w3c": { + Reference: "https://spdx.org/licenses/W3C.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/W3C.json", + ReferenceNumber: 173, + Name: "W3C Software Notice and License (2002-12-31)", + LicenseID: "W3C", + SeeAlso: []string{ + "http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html", + "https://opensource.org/licenses/W3C", + }, + IsOsiApproved: true, + }, + "bittorrent-1.1": { + Reference: "https://spdx.org/licenses/BitTorrent-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BitTorrent-1.1.json", + ReferenceNumber: 174, + Name: "BitTorrent Open Source License v1.1", + LicenseID: "BitTorrent-1.1", + SeeAlso: []string{ + "http://directory.fsf.org/wiki/License:BitTorrentOSL1.1", + }, + IsOsiApproved: false, + }, + "gpl-1.0+": { + Reference: "https://spdx.org/licenses/GPL-1.0+.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/GPL-1.0+.json", + ReferenceNumber: 175, + Name: "GNU General Public License v1.0 or later", + LicenseID: "GPL-1.0+", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + }, + IsOsiApproved: false, + }, + "spencer-99": { + Reference: "https://spdx.org/licenses/Spencer-99.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Spencer-99.json", + ReferenceNumber: 176, + Name: "Spencer License 99", + LicenseID: "Spencer-99", + SeeAlso: []string{ + "http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c", + }, + IsOsiApproved: false, + }, + "sleepycat": { + Reference: "https://spdx.org/licenses/Sleepycat.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Sleepycat.json", + ReferenceNumber: 177, + Name: "Sleepycat License", + LicenseID: "Sleepycat", + SeeAlso: []string{ + "https://opensource.org/licenses/Sleepycat", + }, + IsOsiApproved: true, + }, + "dl-de-zero-2.0": { + Reference: "https://spdx.org/licenses/DL-DE-ZERO-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/DL-DE-ZERO-2.0.json", + ReferenceNumber: 178, + Name: "Data licence Germany – zero – version 2.0", + LicenseID: "DL-DE-ZERO-2.0", + SeeAlso: []string{ + "https://www.govdata.de/dl-de/zero-2-0", + }, + IsOsiApproved: false, + }, + "bsd-3-clause": { + Reference: "https://spdx.org/licenses/BSD-3-Clause.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-3-Clause.json", + ReferenceNumber: 179, + Name: "BSD 3-Clause \"New\" or \"Revised\" License", + LicenseID: "BSD-3-Clause", + SeeAlso: []string{ + "https://opensource.org/licenses/BSD-3-Clause", + "https://www.eclipse.org/org/documents/edl-v10.php", + }, + IsOsiApproved: true, + }, + "bsd-4-clause-shortened": { + Reference: "https://spdx.org/licenses/BSD-4-Clause-Shortened.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-4-Clause-Shortened.json", + ReferenceNumber: 180, + Name: "BSD 4 Clause Shortened", + LicenseID: "BSD-4-Clause-Shortened", + SeeAlso: []string{ + "https://metadata.ftp-master.debian.org/changelogs//main/a/arpwatch/arpwatch_2.1a15-7_copyright", + }, + IsOsiApproved: false, + }, + "shl-0.51": { + Reference: "https://spdx.org/licenses/SHL-0.51.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SHL-0.51.json", + ReferenceNumber: 181, + Name: "Solderpad Hardware License, Version 0.51", + LicenseID: "SHL-0.51", + SeeAlso: []string{ + "https://solderpad.org/licenses/SHL-0.51/", + }, + IsOsiApproved: false, + }, + "lgpl-2.1-only": { + Reference: "https://spdx.org/licenses/LGPL-2.1-only.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LGPL-2.1-only.json", + ReferenceNumber: 182, + Name: "GNU Lesser General Public License v2.1 only", + LicenseID: "LGPL-2.1-only", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", + "https://opensource.org/licenses/LGPL-2.1", + }, + IsOsiApproved: true, + }, + "parity-6.0.0": { + Reference: "https://spdx.org/licenses/Parity-6.0.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Parity-6.0.0.json", + ReferenceNumber: 183, + Name: "The Parity Public License 6.0.0", + LicenseID: "Parity-6.0.0", + SeeAlso: []string{ + "https://paritylicense.com/versions/6.0.0.html", + }, + IsOsiApproved: false, + }, + "gpl-3.0-with-autoconf-exception": { + Reference: "https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.json", + ReferenceNumber: 184, + Name: "GNU General Public License v3.0 w/Autoconf exception", + LicenseID: "GPL-3.0-with-autoconf-exception", + SeeAlso: []string{ + "https://www.gnu.org/licenses/autoconf-exception-3.0.html", + }, + IsOsiApproved: false, + }, + "mit-0": { + Reference: "https://spdx.org/licenses/MIT-0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MIT-0.json", + ReferenceNumber: 185, + Name: "MIT No Attribution", + LicenseID: "MIT-0", + SeeAlso: []string{ + "https://github.com/aws/mit-0", + "https://romanrm.net/mit-zero", + "https://github.com/awsdocs/aws-cloud9-user-guide/blob/master/LICENSE-SAMPLECODE", + }, + IsOsiApproved: true, + }, + "cc-pddc": { + Reference: "https://spdx.org/licenses/CC-PDDC.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-PDDC.json", + ReferenceNumber: 186, + Name: "Creative Commons Public Domain Dedication and Certification", + LicenseID: "CC-PDDC", + SeeAlso: []string{ + "https://creativecommons.org/licenses/publicdomain/", + }, + IsOsiApproved: false, + }, + "ulem": { + Reference: "https://spdx.org/licenses/ulem.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/ulem.json", + ReferenceNumber: 187, + Name: "ulem License", + LicenseID: "ulem", + SeeAlso: []string{ + "https://mirrors.ctan.org/macros/latex/contrib/ulem/README", + }, + IsOsiApproved: false, + }, + "xinetd": { + Reference: "https://spdx.org/licenses/xinetd.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/xinetd.json", + ReferenceNumber: 188, + Name: "xinetd License", + LicenseID: "xinetd", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Xinetd_License", + }, + IsOsiApproved: false, + }, + "linux-man-pages-1-para": { + Reference: "https://spdx.org/licenses/Linux-man-pages-1-para.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Linux-man-pages-1-para.json", + ReferenceNumber: 189, + Name: "Linux man-pages - 1 paragraph", + LicenseID: "Linux-man-pages-1-para", + SeeAlso: []string{ + "https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/man2/getcpu.2#n4", + }, + IsOsiApproved: false, + }, + "oldap-2.8": { + Reference: "https://spdx.org/licenses/OLDAP-2.8.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OLDAP-2.8.json", + ReferenceNumber: 190, + Name: "Open LDAP Public License v2.8", + LicenseID: "OLDAP-2.8", + SeeAlso: []string{ + "http://www.openldap.org/software/release/license.html", + }, + IsOsiApproved: true, + }, + "oml": { + Reference: "https://spdx.org/licenses/OML.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OML.json", + ReferenceNumber: 191, + Name: "Open Market License", + LicenseID: "OML", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Open_Market_License", + }, + IsOsiApproved: false, + }, + "icu": { + Reference: "https://spdx.org/licenses/ICU.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/ICU.json", + ReferenceNumber: 192, + Name: "ICU License", + LicenseID: "ICU", + SeeAlso: []string{ + "http://source.icu-project.org/repos/icu/icu/trunk/license.html", + }, + IsOsiApproved: false, + }, + "sgi-b-2.0": { + Reference: "https://spdx.org/licenses/SGI-B-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SGI-B-2.0.json", + ReferenceNumber: 193, + Name: "SGI Free Software License B v2.0", + LicenseID: "SGI-B-2.0", + SeeAlso: []string{ + "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf", + }, + IsOsiApproved: false, + }, + "antlr-pd-fallback": { + Reference: "https://spdx.org/licenses/ANTLR-PD-fallback.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/ANTLR-PD-fallback.json", + ReferenceNumber: 194, + Name: "ANTLR Software Rights Notice with license fallback", + LicenseID: "ANTLR-PD-fallback", + SeeAlso: []string{ + "http://www.antlr2.org/license.html", + }, + IsOsiApproved: false, + }, + "dvipdfm": { + Reference: "https://spdx.org/licenses/dvipdfm.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/dvipdfm.json", + ReferenceNumber: 195, + Name: "dvipdfm License", + LicenseID: "dvipdfm", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/dvipdfm", + }, + IsOsiApproved: false, + }, + "gpl-3.0+": { + Reference: "https://spdx.org/licenses/GPL-3.0+.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/GPL-3.0+.json", + ReferenceNumber: 196, + Name: "GNU General Public License v3.0 or later", + LicenseID: "GPL-3.0+", + SeeAlso: []string{ + "https://www.gnu.org/licenses/gpl-3.0-standalone.html", + "https://opensource.org/licenses/GPL-3.0", + }, + IsOsiApproved: true, + }, + "epl-2.0": { + Reference: "https://spdx.org/licenses/EPL-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/EPL-2.0.json", + ReferenceNumber: 197, + Name: "Eclipse Public License 2.0", + LicenseID: "EPL-2.0", + SeeAlso: []string{ + "https://www.eclipse.org/legal/epl-2.0", + "https://www.opensource.org/licenses/EPL-2.0", + }, + IsOsiApproved: true, + }, + "oldap-1.3": { + Reference: "https://spdx.org/licenses/OLDAP-1.3.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OLDAP-1.3.json", + ReferenceNumber: 198, + Name: "Open LDAP Public License v1.3", + LicenseID: "OLDAP-1.3", + SeeAlso: []string{ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=e5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1", + }, + IsOsiApproved: false, + }, + "linux-man-pages-copyleft": { + Reference: "https://spdx.org/licenses/Linux-man-pages-copyleft.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Linux-man-pages-copyleft.json", + ReferenceNumber: 199, + Name: "Linux man-pages Copyleft", + LicenseID: "Linux-man-pages-copyleft", + SeeAlso: []string{ + "https://www.kernel.org/doc/man-pages/licenses.html", + }, + IsOsiApproved: false, + }, + "ofl-1.1-no-rfn": { + Reference: "https://spdx.org/licenses/OFL-1.1-no-RFN.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OFL-1.1-no-RFN.json", + ReferenceNumber: 200, + Name: "SIL Open Font License 1.1 with no Reserved Font Name", + LicenseID: "OFL-1.1-no-RFN", + SeeAlso: []string{ + "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web", + "https://opensource.org/licenses/OFL-1.1", + }, + IsOsiApproved: true, + }, + "isc": { + Reference: "https://spdx.org/licenses/ISC.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/ISC.json", + ReferenceNumber: 201, + Name: "ISC License", + LicenseID: "ISC", + SeeAlso: []string{ + "https://www.isc.org/licenses/", + "https://www.isc.org/downloads/software-support-policy/isc-license/", + "https://opensource.org/licenses/ISC", + }, + IsOsiApproved: true, + }, + "gfdl-1.1-invariants-only": { + Reference: "https://spdx.org/licenses/GFDL-1.1-invariants-only.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GFDL-1.1-invariants-only.json", + ReferenceNumber: 202, + Name: "GNU Free Documentation License v1.1 only - invariants", + LicenseID: "GFDL-1.1-invariants-only", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", + }, + IsOsiApproved: false, + }, + "adobe-2006": { + Reference: "https://spdx.org/licenses/Adobe-2006.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Adobe-2006.json", + ReferenceNumber: 203, + Name: "Adobe Systems Incorporated Source Code License Agreement", + LicenseID: "Adobe-2006", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/AdobeLicense", + }, + IsOsiApproved: false, + }, + "cc-by-nc-nd-1.0": { + Reference: "https://spdx.org/licenses/CC-BY-NC-ND-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-ND-1.0.json", + ReferenceNumber: 204, + Name: "Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic", + LicenseID: "CC-BY-NC-ND-1.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nd-nc/1.0/legalcode", + }, + IsOsiApproved: false, + }, + "dsdp": { + Reference: "https://spdx.org/licenses/DSDP.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/DSDP.json", + ReferenceNumber: 205, + Name: "DSDP License", + LicenseID: "DSDP", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/DSDP", + }, + IsOsiApproved: false, + }, + "d-fsl-1.0": { + Reference: "https://spdx.org/licenses/D-FSL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/D-FSL-1.0.json", + ReferenceNumber: 206, + Name: "Deutsche Freie Software Lizenz", + LicenseID: "D-FSL-1.0", + SeeAlso: []string{ + "http://www.dipp.nrw.de/d-fsl/lizenzen/", + "http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt", + "http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/deutsche-freie-software-lizenz", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/german-free-software-license", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_de.txt/at_download/file", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_en.txt/at_download/file", + }, + IsOsiApproved: false, + }, + "shl-0.5": { + Reference: "https://spdx.org/licenses/SHL-0.5.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SHL-0.5.json", + ReferenceNumber: 207, + Name: "Solderpad Hardware License v0.5", + LicenseID: "SHL-0.5", + SeeAlso: []string{ + "https://solderpad.org/licenses/SHL-0.5/", + }, + IsOsiApproved: false, + }, + "schemereport": { + Reference: "https://spdx.org/licenses/SchemeReport.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SchemeReport.json", + ReferenceNumber: 208, + Name: "Scheme Language Report License", + LicenseID: "SchemeReport", + SeeAlso: []string{ + }, + IsOsiApproved: false, + }, + "mulanpsl-1.0": { + Reference: "https://spdx.org/licenses/MulanPSL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MulanPSL-1.0.json", + ReferenceNumber: 209, + Name: "Mulan Permissive Software License, Version 1", + LicenseID: "MulanPSL-1.0", + SeeAlso: []string{ + "https://license.coscl.org.cn/MulanPSL/", + "https://github.com/yuwenlong/longphp/blob/25dfb70cc2a466dc4bb55ba30901cbce08d164b5/LICENSE", + }, + IsOsiApproved: false, + }, + "ntp": { + Reference: "https://spdx.org/licenses/NTP.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/NTP.json", + ReferenceNumber: 210, + Name: "NTP License", + LicenseID: "NTP", + SeeAlso: []string{ + "https://opensource.org/licenses/NTP", + }, + IsOsiApproved: true, + }, + "jam": { + Reference: "https://spdx.org/licenses/Jam.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Jam.json", + ReferenceNumber: 211, + Name: "Jam License", + LicenseID: "Jam", + SeeAlso: []string{ + "https://www.boost.org/doc/libs/1_35_0/doc/html/jam.html", + "https://web.archive.org/web/20160330173339/https://swarm.workshop.perforce.com/files/guest/perforce_software/jam/src/README", + }, + IsOsiApproved: true, + }, + "cc-by-sa-2.0-uk": { + Reference: "https://spdx.org/licenses/CC-BY-SA-2.0-UK.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-SA-2.0-UK.json", + ReferenceNumber: 212, + Name: "Creative Commons Attribution Share Alike 2.0 England and Wales", + LicenseID: "CC-BY-SA-2.0-UK", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-sa/2.0/uk/legalcode", + }, + IsOsiApproved: false, + }, + "bsd-3-clause-attribution": { + Reference: "https://spdx.org/licenses/BSD-3-Clause-Attribution.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-3-Clause-Attribution.json", + ReferenceNumber: 213, + Name: "BSD with attribution", + LicenseID: "BSD-3-Clause-Attribution", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution", + }, + IsOsiApproved: false, + }, + "lucida-bitmap-fonts": { + Reference: "https://spdx.org/licenses/Lucida-Bitmap-Fonts.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Lucida-Bitmap-Fonts.json", + ReferenceNumber: 214, + Name: "Lucida Bitmap Fonts License", + LicenseID: "Lucida-Bitmap-Fonts", + SeeAlso: []string{ + "https://gitlab.freedesktop.org/xorg/font/bh-100dpi/-/blob/master/COPYING?ref_type=heads", + }, + IsOsiApproved: false, + }, + "zimbra-1.4": { + Reference: "https://spdx.org/licenses/Zimbra-1.4.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Zimbra-1.4.json", + ReferenceNumber: 215, + Name: "Zimbra Public License v1.4", + LicenseID: "Zimbra-1.4", + SeeAlso: []string{ + "http://www.zimbra.com/legal/zimbra-public-license-1-4", + }, + IsOsiApproved: false, + }, + "cua-opl-1.0": { + Reference: "https://spdx.org/licenses/CUA-OPL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CUA-OPL-1.0.json", + ReferenceNumber: 216, + Name: "CUA Office Public License v1.0", + LicenseID: "CUA-OPL-1.0", + SeeAlso: []string{ + "https://opensource.org/licenses/CUA-OPL-1.0", + }, + IsOsiApproved: true, + }, + "bsd-2-clause": { + Reference: "https://spdx.org/licenses/BSD-2-Clause.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-2-Clause.json", + ReferenceNumber: 217, + Name: "BSD 2-Clause \"Simplified\" License", + LicenseID: "BSD-2-Clause", + SeeAlso: []string{ + "https://opensource.org/licenses/BSD-2-Clause", + }, + IsOsiApproved: true, + }, + "community-spec-1.0": { + Reference: "https://spdx.org/licenses/Community-Spec-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Community-Spec-1.0.json", + ReferenceNumber: 218, + Name: "Community Specification License 1.0", + LicenseID: "Community-Spec-1.0", + SeeAlso: []string{ + "https://github.com/CommunitySpecification/1.0/blob/master/1._Community_Specification_License-v1.md", + }, + IsOsiApproved: false, + }, + "oldap-2.0": { + Reference: "https://spdx.org/licenses/OLDAP-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OLDAP-2.0.json", + ReferenceNumber: 219, + Name: "Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B)", + LicenseID: "OLDAP-2.0", + SeeAlso: []string{ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cbf50f4e1185a21abd4c0a54d3f4341fe28f36ea", + }, + IsOsiApproved: false, + }, + "diffmark": { + Reference: "https://spdx.org/licenses/diffmark.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/diffmark.json", + ReferenceNumber: 220, + Name: "diffmark license", + LicenseID: "diffmark", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/diffmark", + }, + IsOsiApproved: false, + }, + "abstyles": { + Reference: "https://spdx.org/licenses/Abstyles.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Abstyles.json", + ReferenceNumber: 221, + Name: "Abstyles License", + LicenseID: "Abstyles", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Abstyles", + }, + IsOsiApproved: false, + }, + "zeeff": { + Reference: "https://spdx.org/licenses/Zeeff.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Zeeff.json", + ReferenceNumber: 222, + Name: "Zeeff License", + LicenseID: "Zeeff", + SeeAlso: []string{ + "ftp://ftp.tin.org/pub/news/utils/newsx/newsx-1.6.tar.gz", + }, + IsOsiApproved: false, + }, + "brian-gladman-3-clause": { + Reference: "https://spdx.org/licenses/Brian-Gladman-3-Clause.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Brian-Gladman-3-Clause.json", + ReferenceNumber: 223, + Name: "Brian Gladman 3-Clause License", + LicenseID: "Brian-Gladman-3-Clause", + SeeAlso: []string{ + "https://github.com/SWI-Prolog/packages-clib/blob/master/sha1/brg_endian.h", + }, + IsOsiApproved: false, + }, + "bitstream-vera": { + Reference: "https://spdx.org/licenses/Bitstream-Vera.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Bitstream-Vera.json", + ReferenceNumber: 224, + Name: "Bitstream Vera Font License", + LicenseID: "Bitstream-Vera", + SeeAlso: []string{ + "https://web.archive.org/web/20080207013128/http://www.gnome.org/fonts/", + "https://docubrain.com/sites/default/files/licenses/bitstream-vera.html", + }, + IsOsiApproved: false, + }, + "naumen": { + Reference: "https://spdx.org/licenses/Naumen.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Naumen.json", + ReferenceNumber: 225, + Name: "Naumen Public License", + LicenseID: "Naumen", + SeeAlso: []string{ + "https://opensource.org/licenses/Naumen", + }, + IsOsiApproved: true, + }, + "sgi-opengl": { + Reference: "https://spdx.org/licenses/SGI-OpenGL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SGI-OpenGL.json", + ReferenceNumber: 226, + Name: "SGI OpenGL License", + LicenseID: "SGI-OpenGL", + SeeAlso: []string{ + "https://gitlab.freedesktop.org/mesa/glw/-/blob/master/README?ref_type=heads", + }, + IsOsiApproved: false, + }, + "cc-by-sa-2.1-jp": { + Reference: "https://spdx.org/licenses/CC-BY-SA-2.1-JP.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-SA-2.1-JP.json", + ReferenceNumber: 227, + Name: "Creative Commons Attribution Share Alike 2.1 Japan", + LicenseID: "CC-BY-SA-2.1-JP", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-sa/2.1/jp/legalcode", + }, + IsOsiApproved: false, + }, + "cc-by-nd-4.0": { + Reference: "https://spdx.org/licenses/CC-BY-ND-4.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-ND-4.0.json", + ReferenceNumber: 228, + Name: "Creative Commons Attribution No Derivatives 4.0 International", + LicenseID: "CC-BY-ND-4.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nd/4.0/legalcode", + }, + IsOsiApproved: false, + }, + "mit-wu": { + Reference: "https://spdx.org/licenses/MIT-Wu.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MIT-Wu.json", + ReferenceNumber: 229, + Name: "MIT Tom Wu Variant", + LicenseID: "MIT-Wu", + SeeAlso: []string{ + "https://github.com/chromium/octane/blob/master/crypto.js", + }, + IsOsiApproved: false, + }, + "gnuplot": { + Reference: "https://spdx.org/licenses/gnuplot.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/gnuplot.json", + ReferenceNumber: 230, + Name: "gnuplot License", + LicenseID: "gnuplot", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Gnuplot", + }, + IsOsiApproved: false, + }, + "sax-pd": { + Reference: "https://spdx.org/licenses/SAX-PD.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SAX-PD.json", + ReferenceNumber: 231, + Name: "Sax Public Domain Notice", + LicenseID: "SAX-PD", + SeeAlso: []string{ + "http://www.saxproject.org/copying.html", + }, + IsOsiApproved: false, + }, + "hpnd-doc-sell": { + Reference: "https://spdx.org/licenses/HPND-doc-sell.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/HPND-doc-sell.json", + ReferenceNumber: 232, + Name: "Historical Permission Notice and Disclaimer - documentation sell variant", + LicenseID: "HPND-doc-sell", + SeeAlso: []string{ + "https://gitlab.freedesktop.org/xorg/lib/libxtst/-/blob/master/COPYING?ref_type=heads#L108-117", + "https://gitlab.freedesktop.org/xorg/lib/libxext/-/blob/master/COPYING?ref_type=heads#L153-162", + }, + IsOsiApproved: false, + }, + "bittorrent-1.0": { + Reference: "https://spdx.org/licenses/BitTorrent-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BitTorrent-1.0.json", + ReferenceNumber: 233, + Name: "BitTorrent Open Source License v1.0", + LicenseID: "BitTorrent-1.0", + SeeAlso: []string{ + "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/BitTorrent?r1=1.1&r2=1.1.1.1&diff_format=s", + }, + IsOsiApproved: false, + }, + "hp-1989": { + Reference: "https://spdx.org/licenses/HP-1989.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/HP-1989.json", + ReferenceNumber: 234, + Name: "Hewlett-Packard 1989 License", + LicenseID: "HP-1989", + SeeAlso: []string{ + "https://github.com/bleargh45/Data-UUID/blob/master/LICENSE", + }, + IsOsiApproved: false, + }, + "oclc-2.0": { + Reference: "https://spdx.org/licenses/OCLC-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OCLC-2.0.json", + ReferenceNumber: 235, + Name: "OCLC Research Public License 2.0", + LicenseID: "OCLC-2.0", + SeeAlso: []string{ + "http://www.oclc.org/research/activities/software/license/v2final.htm", + "https://opensource.org/licenses/OCLC-2.0", + }, + IsOsiApproved: true, + }, + "ms-lpl": { + Reference: "https://spdx.org/licenses/MS-LPL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MS-LPL.json", + ReferenceNumber: 236, + Name: "Microsoft Limited Public License", + LicenseID: "MS-LPL", + SeeAlso: []string{ + "https://www.openhub.net/licenses/mslpl", + "https://github.com/gabegundy/atlserver/blob/master/License.txt", + "https://en.wikipedia.org/wiki/Shared_Source_Initiative#Microsoft_Limited_Public_License_(Ms-LPL)", + }, + IsOsiApproved: false, + }, + "artistic-2.0": { + Reference: "https://spdx.org/licenses/Artistic-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Artistic-2.0.json", + ReferenceNumber: 237, + Name: "Artistic License 2.0", + LicenseID: "Artistic-2.0", + SeeAlso: []string{ + "http://www.perlfoundation.org/artistic_license_2_0", + "https://www.perlfoundation.org/artistic-license-20.html", + "https://opensource.org/licenses/artistic-license-2.0", + }, + IsOsiApproved: true, + }, + "gfdl-1.2-invariants-or-later": { + Reference: "https://spdx.org/licenses/GFDL-1.2-invariants-or-later.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GFDL-1.2-invariants-or-later.json", + ReferenceNumber: 238, + Name: "GNU Free Documentation License v1.2 or later - invariants", + LicenseID: "GFDL-1.2-invariants-or-later", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", + }, + IsOsiApproved: false, + }, + "json": { + Reference: "https://spdx.org/licenses/JSON.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/JSON.json", + ReferenceNumber: 239, + Name: "JSON License", + LicenseID: "JSON", + SeeAlso: []string{ + "http://www.json.org/license.html", + }, + IsOsiApproved: false, + }, + "checkmk": { + Reference: "https://spdx.org/licenses/checkmk.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/checkmk.json", + ReferenceNumber: 240, + Name: "Checkmk License", + LicenseID: "checkmk", + SeeAlso: []string{ + "https://github.com/libcheck/check/blob/master/checkmk/checkmk.in", + }, + IsOsiApproved: false, + }, + "cc-by-nc-sa-4.0": { + Reference: "https://spdx.org/licenses/CC-BY-NC-SA-4.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-SA-4.0.json", + ReferenceNumber: 241, + Name: "Creative Commons Attribution Non Commercial Share Alike 4.0 International", + LicenseID: "CC-BY-NC-SA-4.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode", + }, + IsOsiApproved: false, + }, + "graphics-gems": { + Reference: "https://spdx.org/licenses/Graphics-Gems.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Graphics-Gems.json", + ReferenceNumber: 242, + Name: "Graphics Gems License", + LicenseID: "Graphics-Gems", + SeeAlso: []string{ + "https://github.com/erich666/GraphicsGems/blob/master/LICENSE.md", + }, + IsOsiApproved: false, + }, + "gd": { + Reference: "https://spdx.org/licenses/GD.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GD.json", + ReferenceNumber: 243, + Name: "GD License", + LicenseID: "GD", + SeeAlso: []string{ + "https://libgd.github.io/manuals/2.3.0/files/license-txt.html", + }, + IsOsiApproved: false, + }, + "0bsd": { + Reference: "https://spdx.org/licenses/0BSD.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/0BSD.json", + ReferenceNumber: 244, + Name: "BSD Zero Clause License", + LicenseID: "0BSD", + SeeAlso: []string{ + "http://landley.net/toybox/license.html", + "https://opensource.org/licenses/0BSD", + }, + IsOsiApproved: true, + }, + "lgpl-2.1+": { + Reference: "https://spdx.org/licenses/LGPL-2.1+.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/LGPL-2.1+.json", + ReferenceNumber: 245, + Name: "GNU Lesser General Public License v2.1 or later", + LicenseID: "LGPL-2.1+", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", + "https://opensource.org/licenses/LGPL-2.1", + }, + IsOsiApproved: true, + }, + "mit": { + Reference: "https://spdx.org/licenses/MIT.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MIT.json", + ReferenceNumber: 246, + Name: "MIT License", + LicenseID: "MIT", + SeeAlso: []string{ + "https://opensource.org/licenses/MIT", + }, + IsOsiApproved: true, + }, + "occt-pl": { + Reference: "https://spdx.org/licenses/OCCT-PL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OCCT-PL.json", + ReferenceNumber: 247, + Name: "Open CASCADE Technology Public License", + LicenseID: "OCCT-PL", + SeeAlso: []string{ + "http://www.opencascade.com/content/occt-public-license", + }, + IsOsiApproved: false, + }, + "lgpl-3.0-only": { + Reference: "https://spdx.org/licenses/LGPL-3.0-only.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LGPL-3.0-only.json", + ReferenceNumber: 248, + Name: "GNU Lesser General Public License v3.0 only", + LicenseID: "LGPL-3.0-only", + SeeAlso: []string{ + "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", + "https://www.gnu.org/licenses/lgpl+gpl-3.0.txt", + "https://opensource.org/licenses/LGPL-3.0", + }, + IsOsiApproved: true, + }, + "adacore-doc": { + Reference: "https://spdx.org/licenses/AdaCore-doc.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/AdaCore-doc.json", + ReferenceNumber: 249, + Name: "AdaCore Doc License", + LicenseID: "AdaCore-doc", + SeeAlso: []string{ + "https://github.com/AdaCore/xmlada/blob/master/docs/index.rst", + "https://github.com/AdaCore/gnatcoll-core/blob/master/docs/index.rst", + "https://github.com/AdaCore/gnatcoll-db/blob/master/docs/index.rst", + }, + IsOsiApproved: false, + }, + "cc-by-nc-3.0": { + Reference: "https://spdx.org/licenses/CC-BY-NC-3.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-3.0.json", + ReferenceNumber: 250, + Name: "Creative Commons Attribution Non Commercial 3.0 Unported", + LicenseID: "CC-BY-NC-3.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc/3.0/legalcode", + }, + IsOsiApproved: false, + }, + "spencer-94": { + Reference: "https://spdx.org/licenses/Spencer-94.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Spencer-94.json", + ReferenceNumber: 251, + Name: "Spencer License 94", + LicenseID: "Spencer-94", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", + "https://metacpan.org/release/KNOK/File-MMagic-1.30/source/COPYING#L28", + }, + IsOsiApproved: false, + }, + "htmltidy": { + Reference: "https://spdx.org/licenses/HTMLTIDY.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/HTMLTIDY.json", + ReferenceNumber: 252, + Name: "HTML Tidy License", + LicenseID: "HTMLTIDY", + SeeAlso: []string{ + "https://github.com/htacg/tidy-html5/blob/next/README/LICENSE.md", + }, + IsOsiApproved: false, + }, + "gfdl-1.2-no-invariants-or-later": { + Reference: "https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later.json", + ReferenceNumber: 253, + Name: "GNU Free Documentation License v1.2 or later - no invariants", + LicenseID: "GFDL-1.2-no-invariants-or-later", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", + }, + IsOsiApproved: false, + }, + "bsd-4.3tahoe": { + Reference: "https://spdx.org/licenses/BSD-4.3TAHOE.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-4.3TAHOE.json", + ReferenceNumber: 254, + Name: "BSD 4.3 TAHOE License", + LicenseID: "BSD-4.3TAHOE", + SeeAlso: []string{ + "https://github.com/389ds/389-ds-base/blob/main/ldap/include/sysexits-compat.h#L15", + "https://git.savannah.gnu.org/cgit/indent.git/tree/doc/indent.texi?id=a74c6b4ee49397cf330b333da1042bffa60ed14f#n1788", + }, + IsOsiApproved: false, + }, + "giftware": { + Reference: "https://spdx.org/licenses/Giftware.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Giftware.json", + ReferenceNumber: 255, + Name: "Giftware License", + LicenseID: "Giftware", + SeeAlso: []string{ + "http://liballeg.org/license.html#allegro-4-the-giftware-license", + }, + IsOsiApproved: false, + }, + "mpl-1.1": { + Reference: "https://spdx.org/licenses/MPL-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MPL-1.1.json", + ReferenceNumber: 256, + Name: "Mozilla Public License 1.1", + LicenseID: "MPL-1.1", + SeeAlso: []string{ + "http://www.mozilla.org/MPL/MPL-1.1.html", + "https://opensource.org/licenses/MPL-1.1", + }, + IsOsiApproved: true, + }, + "ogdl-taiwan-1.0": { + Reference: "https://spdx.org/licenses/OGDL-Taiwan-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OGDL-Taiwan-1.0.json", + ReferenceNumber: 257, + Name: "Taiwan Open Government Data License, version 1.0", + LicenseID: "OGDL-Taiwan-1.0", + SeeAlso: []string{ + "https://data.gov.tw/license", + }, + IsOsiApproved: false, + }, + "oldap-2.7": { + Reference: "https://spdx.org/licenses/OLDAP-2.7.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OLDAP-2.7.json", + ReferenceNumber: 258, + Name: "Open LDAP Public License v2.7", + LicenseID: "OLDAP-2.7", + SeeAlso: []string{ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=47c2415c1df81556eeb39be6cad458ef87c534a2", + }, + IsOsiApproved: false, + }, + "rsa-md": { + Reference: "https://spdx.org/licenses/RSA-MD.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/RSA-MD.json", + ReferenceNumber: 259, + Name: "RSA Message-Digest License", + LicenseID: "RSA-MD", + SeeAlso: []string{ + "http://www.faqs.org/rfcs/rfc1321.html", + }, + IsOsiApproved: false, + }, + "ferguson-twofish": { + Reference: "https://spdx.org/licenses/Ferguson-Twofish.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Ferguson-Twofish.json", + ReferenceNumber: 260, + Name: "Ferguson Twofish License", + LicenseID: "Ferguson-Twofish", + SeeAlso: []string{ + "https://github.com/wernerd/ZRTPCPP/blob/6b3cd8e6783642292bad0c21e3e5e5ce45ff3e03/cryptcommon/twofish.c#L113C3-L127", + }, + IsOsiApproved: false, + }, + "bsd-source-code": { + Reference: "https://spdx.org/licenses/BSD-Source-Code.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-Source-Code.json", + ReferenceNumber: 261, + Name: "BSD Source Code Attribution", + LicenseID: "BSD-Source-Code", + SeeAlso: []string{ + "https://github.com/robbiehanson/CocoaHTTPServer/blob/master/LICENSE.txt", + }, + IsOsiApproved: false, + }, + "aswf-digital-assets-1.0": { + Reference: "https://spdx.org/licenses/ASWF-Digital-Assets-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/ASWF-Digital-Assets-1.0.json", + ReferenceNumber: 262, + Name: "ASWF Digital Assets License version 1.0", + LicenseID: "ASWF-Digital-Assets-1.0", + SeeAlso: []string{ + "https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/aswf_digital_assets_license_v1.0.txt", + }, + IsOsiApproved: false, + }, + "ypl-1.0": { + Reference: "https://spdx.org/licenses/YPL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/YPL-1.0.json", + ReferenceNumber: 263, + Name: "Yahoo! Public License v1.0", + LicenseID: "YPL-1.0", + SeeAlso: []string{ + "http://www.zimbra.com/license/yahoo_public_license_1.0.html", + }, + IsOsiApproved: false, + }, + "oldap-2.1": { + Reference: "https://spdx.org/licenses/OLDAP-2.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OLDAP-2.1.json", + ReferenceNumber: 264, + Name: "Open LDAP Public License v2.1", + LicenseID: "OLDAP-2.1", + SeeAlso: []string{ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b0d176738e96a0d3b9f85cb51e140a86f21be715", + }, + IsOsiApproved: false, + }, + "glulxe": { + Reference: "https://spdx.org/licenses/Glulxe.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Glulxe.json", + ReferenceNumber: 265, + Name: "Glulxe License", + LicenseID: "Glulxe", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Glulxe", + }, + IsOsiApproved: false, + }, + "postgresql": { + Reference: "https://spdx.org/licenses/PostgreSQL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/PostgreSQL.json", + ReferenceNumber: 266, + Name: "PostgreSQL License", + LicenseID: "PostgreSQL", + SeeAlso: []string{ + "http://www.postgresql.org/about/licence", + "https://opensource.org/licenses/PostgreSQL", + }, + IsOsiApproved: true, + }, + "fair": { + Reference: "https://spdx.org/licenses/Fair.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Fair.json", + ReferenceNumber: 267, + Name: "Fair License", + LicenseID: "Fair", + SeeAlso: []string{ + "http://fairlicense.org/", + "https://opensource.org/licenses/Fair", + }, + IsOsiApproved: true, + }, + "apsl-1.0": { + Reference: "https://spdx.org/licenses/APSL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/APSL-1.0.json", + ReferenceNumber: 268, + Name: "Apple Public Source License 1.0", + LicenseID: "APSL-1.0", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0", + }, + IsOsiApproved: true, + }, + "gpl-1.0-or-later": { + Reference: "https://spdx.org/licenses/GPL-1.0-or-later.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GPL-1.0-or-later.json", + ReferenceNumber: 269, + Name: "GNU General Public License v1.0 or later", + LicenseID: "GPL-1.0-or-later", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + }, + IsOsiApproved: false, + }, + "libutil-david-nugent": { + Reference: "https://spdx.org/licenses/libutil-David-Nugent.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/libutil-David-Nugent.json", + ReferenceNumber: 270, + Name: "libutil David Nugent License", + LicenseID: "libutil-David-Nugent", + SeeAlso: []string{ + "http://web.mit.edu/freebsd/head/lib/libutil/login_ok.3", + "https://cgit.freedesktop.org/libbsd/tree/man/setproctitle.3bsd", + }, + IsOsiApproved: false, + }, + "scea": { + Reference: "https://spdx.org/licenses/SCEA.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SCEA.json", + ReferenceNumber: 271, + Name: "SCEA Shared Source License", + LicenseID: "SCEA", + SeeAlso: []string{ + "http://research.scea.com/scea_shared_source_license.html", + }, + IsOsiApproved: false, + }, + "bsd-3-clause-no-military-license": { + Reference: "https://spdx.org/licenses/BSD-3-Clause-No-Military-License.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-3-Clause-No-Military-License.json", + ReferenceNumber: 272, + Name: "BSD 3-Clause No Military License", + LicenseID: "BSD-3-Clause-No-Military-License", + SeeAlso: []string{ + "https://gitlab.syncad.com/hive/dhive/-/blob/master/LICENSE", + "https://github.com/greymass/swift-eosio/blob/master/LICENSE", + }, + IsOsiApproved: false, + }, + "xnet": { + Reference: "https://spdx.org/licenses/Xnet.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Xnet.json", + ReferenceNumber: 273, + Name: "X.Net License", + LicenseID: "Xnet", + SeeAlso: []string{ + "https://opensource.org/licenses/Xnet", + }, + IsOsiApproved: true, + }, + "mit-feh": { + Reference: "https://spdx.org/licenses/MIT-feh.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MIT-feh.json", + ReferenceNumber: 274, + Name: "feh License", + LicenseID: "MIT-feh", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/MIT#feh", + }, + IsOsiApproved: false, + }, + "agpl-1.0-only": { + Reference: "https://spdx.org/licenses/AGPL-1.0-only.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/AGPL-1.0-only.json", + ReferenceNumber: 275, + Name: "Affero General Public License v1.0 only", + LicenseID: "AGPL-1.0-only", + SeeAlso: []string{ + "http://www.affero.org/oagpl.html", + }, + IsOsiApproved: false, + }, + "nokia": { + Reference: "https://spdx.org/licenses/Nokia.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Nokia.json", + ReferenceNumber: 276, + Name: "Nokia Open Source License", + LicenseID: "Nokia", + SeeAlso: []string{ + "https://opensource.org/licenses/nokia", + }, + IsOsiApproved: true, + }, + "cornell-lossless-jpeg": { + Reference: "https://spdx.org/licenses/Cornell-Lossless-JPEG.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Cornell-Lossless-JPEG.json", + ReferenceNumber: 277, + Name: "Cornell Lossless JPEG License", + LicenseID: "Cornell-Lossless-JPEG", + SeeAlso: []string{ + "https://android.googlesource.com/platform/external/dng_sdk/+/refs/heads/master/source/dng_lossless_jpeg.cpp#16", + "https://www.mssl.ucl.ac.uk/~mcrw/src/20050920/proto.h", + "https://gitlab.freedesktop.org/libopenraw/libopenraw/blob/master/lib/ljpegdecompressor.cpp#L32", + }, + IsOsiApproved: false, + }, + "swrule": { + Reference: "https://spdx.org/licenses/swrule.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/swrule.json", + ReferenceNumber: 278, + Name: "swrule License", + LicenseID: "swrule", + SeeAlso: []string{ + "https://ctan.math.utah.edu/ctan/tex-archive/macros/generic/misc/swrule.sty", + }, + IsOsiApproved: false, + }, + "osl-1.1": { + Reference: "https://spdx.org/licenses/OSL-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OSL-1.1.json", + ReferenceNumber: 279, + Name: "Open Software License 1.1", + LicenseID: "OSL-1.1", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/OSL1.1", + }, + IsOsiApproved: false, + }, + "gpl-2.0-with-bison-exception": { + Reference: "https://spdx.org/licenses/GPL-2.0-with-bison-exception.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/GPL-2.0-with-bison-exception.json", + ReferenceNumber: 280, + Name: "GNU General Public License v2.0 w/Bison exception", + LicenseID: "GPL-2.0-with-bison-exception", + SeeAlso: []string{ + "http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id=193d7c7054ba7197b0789e14965b739162319b5e#n141", + }, + IsOsiApproved: false, + }, + "epl-1.0": { + Reference: "https://spdx.org/licenses/EPL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/EPL-1.0.json", + ReferenceNumber: 281, + Name: "Eclipse Public License 1.0", + LicenseID: "EPL-1.0", + SeeAlso: []string{ + "http://www.eclipse.org/legal/epl-v10.html", + "https://opensource.org/licenses/EPL-1.0", + }, + IsOsiApproved: true, + }, + "xfree86-1.1": { + Reference: "https://spdx.org/licenses/XFree86-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/XFree86-1.1.json", + ReferenceNumber: 282, + Name: "XFree86 License 1.1", + LicenseID: "XFree86-1.1", + SeeAlso: []string{ + "http://www.xfree86.org/current/LICENSE4.html", + }, + IsOsiApproved: false, + }, + "ucar": { + Reference: "https://spdx.org/licenses/UCAR.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/UCAR.json", + ReferenceNumber: 283, + Name: "UCAR License", + LicenseID: "UCAR", + SeeAlso: []string{ + "https://github.com/Unidata/UDUNITS-2/blob/master/COPYRIGHT", + }, + IsOsiApproved: false, + }, + "copyleft-next-0.3.1": { + Reference: "https://spdx.org/licenses/copyleft-next-0.3.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/copyleft-next-0.3.1.json", + ReferenceNumber: 284, + Name: "copyleft-next 0.3.1", + LicenseID: "copyleft-next-0.3.1", + SeeAlso: []string{ + "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.1", + }, + IsOsiApproved: false, + }, + "ijg-short": { + Reference: "https://spdx.org/licenses/IJG-short.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/IJG-short.json", + ReferenceNumber: 285, + Name: "Independent JPEG Group License - short", + LicenseID: "IJG-short", + SeeAlso: []string{ + "https://sourceforge.net/p/xmedcon/code/ci/master/tree/libs/ljpg/", + }, + IsOsiApproved: false, + }, + "plexus": { + Reference: "https://spdx.org/licenses/Plexus.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Plexus.json", + ReferenceNumber: 286, + Name: "Plexus Classworlds License", + LicenseID: "Plexus", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License", + }, + IsOsiApproved: false, + }, + "apache-1.1": { + Reference: "https://spdx.org/licenses/Apache-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Apache-1.1.json", + ReferenceNumber: 287, + Name: "Apache License 1.1", + LicenseID: "Apache-1.1", + SeeAlso: []string{ + "http://apache.org/licenses/LICENSE-1.1", + "https://opensource.org/licenses/Apache-1.1", + }, + IsOsiApproved: true, + }, + "upl-1.0": { + Reference: "https://spdx.org/licenses/UPL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/UPL-1.0.json", + ReferenceNumber: 288, + Name: "Universal Permissive License v1.0", + LicenseID: "UPL-1.0", + SeeAlso: []string{ + "https://opensource.org/licenses/UPL", + }, + IsOsiApproved: true, + }, + "hpnd-dec": { + Reference: "https://spdx.org/licenses/HPND-DEC.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/HPND-DEC.json", + ReferenceNumber: 289, + Name: "Historical Permission Notice and Disclaimer - DEC variant", + LicenseID: "HPND-DEC", + SeeAlso: []string{ + "https://gitlab.freedesktop.org/xorg/app/xkbcomp/-/blob/master/COPYING?ref_type=heads#L69", + }, + IsOsiApproved: false, + }, + "hp-1986": { + Reference: "https://spdx.org/licenses/HP-1986.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/HP-1986.json", + ReferenceNumber: 290, + Name: "Hewlett-Packard 1986 License", + LicenseID: "HP-1986", + SeeAlso: []string{ + "https://sourceware.org/git/?p=newlib-cygwin.git;a=blob;f=newlib/libc/machine/hppa/memchr.S;h=1cca3e5e8867aa4bffef1f75a5c1bba25c0c441e;hb=HEAD#l2", + }, + IsOsiApproved: false, + }, + "gfdl-1.1-only": { + Reference: "https://spdx.org/licenses/GFDL-1.1-only.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GFDL-1.1-only.json", + ReferenceNumber: 291, + Name: "GNU Free Documentation License v1.1 only", + LicenseID: "GFDL-1.1-only", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", + }, + IsOsiApproved: false, + }, + "qpl-1.0": { + Reference: "https://spdx.org/licenses/QPL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/QPL-1.0.json", + ReferenceNumber: 292, + Name: "Q Public License 1.0", + LicenseID: "QPL-1.0", + SeeAlso: []string{ + "http://doc.qt.nokia.com/3.3/license.html", + "https://opensource.org/licenses/QPL-1.0", + "https://doc.qt.io/archives/3.3/license.html", + }, + IsOsiApproved: true, + }, + "libpng-2.0": { + Reference: "https://spdx.org/licenses/libpng-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/libpng-2.0.json", + ReferenceNumber: 293, + Name: "PNG Reference Library version 2", + LicenseID: "libpng-2.0", + SeeAlso: []string{ + "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt", + }, + IsOsiApproved: false, + }, + "zlib": { + Reference: "https://spdx.org/licenses/Zlib.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Zlib.json", + ReferenceNumber: 294, + Name: "zlib License", + LicenseID: "Zlib", + SeeAlso: []string{ + "http://www.zlib.net/zlib_license.html", + "https://opensource.org/licenses/Zlib", + }, + IsOsiApproved: true, + }, + "gfdl-1.3-or-later": { + Reference: "https://spdx.org/licenses/GFDL-1.3-or-later.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GFDL-1.3-or-later.json", + ReferenceNumber: 295, + Name: "GNU Free Documentation License v1.3 or later", + LicenseID: "GFDL-1.3-or-later", + SeeAlso: []string{ + "https://www.gnu.org/licenses/fdl-1.3.txt", + }, + IsOsiApproved: false, + }, + "cern-ohl-1.1": { + Reference: "https://spdx.org/licenses/CERN-OHL-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CERN-OHL-1.1.json", + ReferenceNumber: 296, + Name: "CERN Open Hardware Licence v1.1", + LicenseID: "CERN-OHL-1.1", + SeeAlso: []string{ + "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1", + }, + IsOsiApproved: false, + }, + "sugarcrm-1.1.3": { + Reference: "https://spdx.org/licenses/SugarCRM-1.1.3.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SugarCRM-1.1.3.json", + ReferenceNumber: 297, + Name: "SugarCRM Public License v1.1.3", + LicenseID: "SugarCRM-1.1.3", + SeeAlso: []string{ + "http://www.sugarcrm.com/crm/SPL", + }, + IsOsiApproved: false, + }, + "vsl-1.0": { + Reference: "https://spdx.org/licenses/VSL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/VSL-1.0.json", + ReferenceNumber: 298, + Name: "Vovida Software License v1.0", + LicenseID: "VSL-1.0", + SeeAlso: []string{ + "https://opensource.org/licenses/VSL-1.0", + }, + IsOsiApproved: true, + }, + "nrl": { + Reference: "https://spdx.org/licenses/NRL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/NRL.json", + ReferenceNumber: 299, + Name: "NRL License", + LicenseID: "NRL", + SeeAlso: []string{ + "http://web.mit.edu/network/isakmp/nrllicense.html", + }, + IsOsiApproved: false, + }, + "zend-2.0": { + Reference: "https://spdx.org/licenses/Zend-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Zend-2.0.json", + ReferenceNumber: 300, + Name: "Zend License v2.0", + LicenseID: "Zend-2.0", + SeeAlso: []string{ + "https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt", + }, + IsOsiApproved: false, + }, + "ogl-canada-2.0": { + Reference: "https://spdx.org/licenses/OGL-Canada-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OGL-Canada-2.0.json", + ReferenceNumber: 301, + Name: "Open Government Licence - Canada", + LicenseID: "OGL-Canada-2.0", + SeeAlso: []string{ + "https://open.canada.ca/en/open-government-licence-canada", + }, + IsOsiApproved: false, + }, + "eudatagrid": { + Reference: "https://spdx.org/licenses/EUDatagrid.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/EUDatagrid.json", + ReferenceNumber: 302, + Name: "EU DataGrid Software License", + LicenseID: "EUDatagrid", + SeeAlso: []string{ + "http://eu-datagrid.web.cern.ch/eu-datagrid/license.html", + "https://opensource.org/licenses/EUDatagrid", + }, + IsOsiApproved: true, + }, + "nunit": { + Reference: "https://spdx.org/licenses/Nunit.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/Nunit.json", + ReferenceNumber: 303, + Name: "Nunit License", + LicenseID: "Nunit", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Nunit", + }, + IsOsiApproved: false, + }, + "mulanpsl-2.0": { + Reference: "https://spdx.org/licenses/MulanPSL-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MulanPSL-2.0.json", + ReferenceNumber: 304, + Name: "Mulan Permissive Software License, Version 2", + LicenseID: "MulanPSL-2.0", + SeeAlso: []string{ + "https://license.coscl.org.cn/MulanPSL2/", + }, + IsOsiApproved: true, + }, + "newsletr": { + Reference: "https://spdx.org/licenses/Newsletr.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Newsletr.json", + ReferenceNumber: 305, + Name: "Newsletr License", + LicenseID: "Newsletr", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Newsletr", + }, + IsOsiApproved: false, + }, + "bsd-4-clause-uc": { + Reference: "https://spdx.org/licenses/BSD-4-Clause-UC.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-4-Clause-UC.json", + ReferenceNumber: 306, + Name: "BSD-4-Clause (University of California-Specific)", + LicenseID: "BSD-4-Clause-UC", + SeeAlso: []string{ + "http://www.freebsd.org/copyright/license.html", + }, + IsOsiApproved: false, + }, + "polyform-small-business-1.0.0": { + Reference: "https://spdx.org/licenses/PolyForm-Small-Business-1.0.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/PolyForm-Small-Business-1.0.0.json", + ReferenceNumber: 307, + Name: "PolyForm Small Business License 1.0.0", + LicenseID: "PolyForm-Small-Business-1.0.0", + SeeAlso: []string{ + "https://polyformproject.org/licenses/small-business/1.0.0", + }, + IsOsiApproved: false, + }, + "miros": { + Reference: "https://spdx.org/licenses/MirOS.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MirOS.json", + ReferenceNumber: 308, + Name: "The MirOS Licence", + LicenseID: "MirOS", + SeeAlso: []string{ + "https://opensource.org/licenses/MirOS", + }, + IsOsiApproved: true, + }, + "adobe-utopia": { + Reference: "https://spdx.org/licenses/Adobe-Utopia.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Adobe-Utopia.json", + ReferenceNumber: 309, + Name: "Adobe Utopia Font License", + LicenseID: "Adobe-Utopia", + SeeAlso: []string{ + "https://gitlab.freedesktop.org/xorg/font/adobe-utopia-100dpi/-/blob/master/COPYING?ref_type=heads", + }, + IsOsiApproved: false, + }, + "gfdl-1.1-no-invariants-or-later": { + Reference: "https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later.json", + ReferenceNumber: 310, + Name: "GNU Free Documentation License v1.1 or later - no invariants", + LicenseID: "GFDL-1.1-no-invariants-or-later", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", + }, + IsOsiApproved: false, + }, + "rpl-1.5": { + Reference: "https://spdx.org/licenses/RPL-1.5.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/RPL-1.5.json", + ReferenceNumber: 311, + Name: "Reciprocal Public License 1.5", + LicenseID: "RPL-1.5", + SeeAlso: []string{ + "https://opensource.org/licenses/RPL-1.5", + }, + IsOsiApproved: true, + }, + "tmate": { + Reference: "https://spdx.org/licenses/TMate.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/TMate.json", + ReferenceNumber: 312, + Name: "TMate Open Source License", + LicenseID: "TMate", + SeeAlso: []string{ + "http://svnkit.com/license.html", + }, + IsOsiApproved: false, + }, + "libtiff": { + Reference: "https://spdx.org/licenses/libtiff.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/libtiff.json", + ReferenceNumber: 313, + Name: "libtiff License", + LicenseID: "libtiff", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/libtiff", + }, + IsOsiApproved: false, + }, + "gpl-3.0-only": { + Reference: "https://spdx.org/licenses/GPL-3.0-only.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GPL-3.0-only.json", + ReferenceNumber: 314, + Name: "GNU General Public License v3.0 only", + LicenseID: "GPL-3.0-only", + SeeAlso: []string{ + "https://www.gnu.org/licenses/gpl-3.0-standalone.html", + "https://opensource.org/licenses/GPL-3.0", + }, + IsOsiApproved: true, + }, + "cc-by-sa-3.0": { + Reference: "https://spdx.org/licenses/CC-BY-SA-3.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-SA-3.0.json", + ReferenceNumber: 315, + Name: "Creative Commons Attribution Share Alike 3.0 Unported", + LicenseID: "CC-BY-SA-3.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-sa/3.0/legalcode", + }, + IsOsiApproved: false, + }, + "unicode-dfs-2016": { + Reference: "https://spdx.org/licenses/Unicode-DFS-2016.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Unicode-DFS-2016.json", + ReferenceNumber: 316, + Name: "Unicode License Agreement - Data Files and Software (2016)", + LicenseID: "Unicode-DFS-2016", + SeeAlso: []string{ + "https://www.unicode.org/license.txt", + "http://web.archive.org/web/20160823201924/http://www.unicode.org/copyright.html#License", + "http://www.unicode.org/copyright.html", + }, + IsOsiApproved: true, + }, + "cc-by-nc-3.0-de": { + Reference: "https://spdx.org/licenses/CC-BY-NC-3.0-DE.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-3.0-DE.json", + ReferenceNumber: 317, + Name: "Creative Commons Attribution Non Commercial 3.0 Germany", + LicenseID: "CC-BY-NC-3.0-DE", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc/3.0/de/legalcode", + }, + IsOsiApproved: false, + }, + "npl-1.0": { + Reference: "https://spdx.org/licenses/NPL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/NPL-1.0.json", + ReferenceNumber: 318, + Name: "Netscape Public License v1.0", + LicenseID: "NPL-1.0", + SeeAlso: []string{ + "http://www.mozilla.org/MPL/NPL/1.0/", + }, + IsOsiApproved: false, + }, + "egenix": { + Reference: "https://spdx.org/licenses/eGenix.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/eGenix.json", + ReferenceNumber: 319, + Name: "eGenix.com Public License 1.1.0", + LicenseID: "eGenix", + SeeAlso: []string{ + "http://www.egenix.com/products/eGenix.com-Public-License-1.1.0.pdf", + "https://fedoraproject.org/wiki/Licensing/eGenix.com_Public_License_1.1.0", + }, + IsOsiApproved: false, + }, + "polyform-noncommercial-1.0.0": { + Reference: "https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.json", + ReferenceNumber: 320, + Name: "PolyForm Noncommercial License 1.0.0", + LicenseID: "PolyForm-Noncommercial-1.0.0", + SeeAlso: []string{ + "https://polyformproject.org/licenses/noncommercial/1.0.0", + }, + IsOsiApproved: false, + }, + "crossword": { + Reference: "https://spdx.org/licenses/Crossword.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Crossword.json", + ReferenceNumber: 321, + Name: "Crossword License", + LicenseID: "Crossword", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Crossword", + }, + IsOsiApproved: false, + }, + "iec-code-components-eula": { + Reference: "https://spdx.org/licenses/IEC-Code-Components-EULA.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/IEC-Code-Components-EULA.json", + ReferenceNumber: 322, + Name: "IEC Code Components End-user licence agreement", + LicenseID: "IEC-Code-Components-EULA", + SeeAlso: []string{ + "https://www.iec.ch/webstore/custserv/pdf/CC-EULA.pdf", + "https://www.iec.ch/CCv1", + "https://www.iec.ch/copyright", + }, + IsOsiApproved: false, + }, + "hpnd": { + Reference: "https://spdx.org/licenses/HPND.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/HPND.json", + ReferenceNumber: 323, + Name: "Historical Permission Notice and Disclaimer", + LicenseID: "HPND", + SeeAlso: []string{ + "https://opensource.org/licenses/HPND", + "http://lists.opensource.org/pipermail/license-discuss_lists.opensource.org/2002-November/006304.html", + }, + IsOsiApproved: true, + }, + "efl-1.0": { + Reference: "https://spdx.org/licenses/EFL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/EFL-1.0.json", + ReferenceNumber: 324, + Name: "Eiffel Forum License v1.0", + LicenseID: "EFL-1.0", + SeeAlso: []string{ + "http://www.eiffel-nice.org/license/forum.txt", + "https://opensource.org/licenses/EFL-1.0", + }, + IsOsiApproved: true, + }, + "oldap-1.4": { + Reference: "https://spdx.org/licenses/OLDAP-1.4.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OLDAP-1.4.json", + ReferenceNumber: 325, + Name: "Open LDAP Public License v1.4", + LicenseID: "OLDAP-1.4", + SeeAlso: []string{ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=c9f95c2f3f2ffb5e0ae55fe7388af75547660941", + }, + IsOsiApproved: false, + }, + "mmixware": { + Reference: "https://spdx.org/licenses/MMIXware.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MMIXware.json", + ReferenceNumber: 326, + Name: "MMIXware License", + LicenseID: "MMIXware", + SeeAlso: []string{ + "https://gitlab.lrz.de/mmix/mmixware/-/blob/master/boilerplate.w", + }, + IsOsiApproved: false, + }, + "openpbs-2.3": { + Reference: "https://spdx.org/licenses/OpenPBS-2.3.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OpenPBS-2.3.json", + ReferenceNumber: 327, + Name: "OpenPBS v2.3 Software License", + LicenseID: "OpenPBS-2.3", + SeeAlso: []string{ + "https://github.com/adaptivecomputing/torque/blob/master/PBS_License.txt", + "https://www.mcs.anl.gov/research/projects/openpbs/PBS_License.txt", + }, + IsOsiApproved: false, + }, + "unicode-tou": { + Reference: "https://spdx.org/licenses/Unicode-TOU.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Unicode-TOU.json", + ReferenceNumber: 328, + Name: "Unicode Terms of Use", + LicenseID: "Unicode-TOU", + SeeAlso: []string{ + "http://web.archive.org/web/20140704074106/http://www.unicode.org/copyright.html", + "http://www.unicode.org/copyright.html", + }, + IsOsiApproved: false, + }, + "cc-by-3.0-de": { + Reference: "https://spdx.org/licenses/CC-BY-3.0-DE.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-3.0-DE.json", + ReferenceNumber: 329, + Name: "Creative Commons Attribution 3.0 Germany", + LicenseID: "CC-BY-3.0-DE", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by/3.0/de/legalcode", + }, + IsOsiApproved: false, + }, + "eupl-1.1": { + Reference: "https://spdx.org/licenses/EUPL-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/EUPL-1.1.json", + ReferenceNumber: 330, + Name: "European Union Public License 1.1", + LicenseID: "EUPL-1.1", + SeeAlso: []string{ + "https://joinup.ec.europa.eu/software/page/eupl/licence-eupl", + "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl1.1.-licence-en_0.pdf", + "https://opensource.org/licenses/EUPL-1.1", + }, + IsOsiApproved: true, + }, + "sl": { + Reference: "https://spdx.org/licenses/SL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SL.json", + ReferenceNumber: 331, + Name: "SL License", + LicenseID: "SL", + SeeAlso: []string{ + "https://github.com/mtoyoda/sl/blob/master/LICENSE", + }, + IsOsiApproved: false, + }, + "gpl-2.0-with-font-exception": { + Reference: "https://spdx.org/licenses/GPL-2.0-with-font-exception.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/GPL-2.0-with-font-exception.json", + ReferenceNumber: 332, + Name: "GNU General Public License v2.0 w/Font exception", + LicenseID: "GPL-2.0-with-font-exception", + SeeAlso: []string{ + "https://www.gnu.org/licenses/gpl-faq.html#FontException", + }, + IsOsiApproved: false, + }, + "motosoto": { + Reference: "https://spdx.org/licenses/Motosoto.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Motosoto.json", + ReferenceNumber: 333, + Name: "Motosoto License", + LicenseID: "Motosoto", + SeeAlso: []string{ + "https://opensource.org/licenses/Motosoto", + }, + IsOsiApproved: true, + }, + "caldera": { + Reference: "https://spdx.org/licenses/Caldera.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Caldera.json", + ReferenceNumber: 334, + Name: "Caldera License", + LicenseID: "Caldera", + SeeAlso: []string{ + "http://www.lemis.com/grog/UNIX/ancient-source-all.pdf", + }, + IsOsiApproved: false, + }, + "gpl-2.0": { + Reference: "https://spdx.org/licenses/GPL-2.0.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/GPL-2.0.json", + ReferenceNumber: 335, + Name: "GNU General Public License v2.0 only", + LicenseID: "GPL-2.0", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "https://opensource.org/licenses/GPL-2.0", + }, + IsOsiApproved: true, + }, + "bsd-inferno-nettverk": { + Reference: "https://spdx.org/licenses/BSD-Inferno-Nettverk.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-Inferno-Nettverk.json", + ReferenceNumber: 336, + Name: "BSD-Inferno-Nettverk", + LicenseID: "BSD-Inferno-Nettverk", + SeeAlso: []string{ + "https://www.inet.no/dante/LICENSE", + }, + IsOsiApproved: false, + }, + "gfdl-1.1": { + Reference: "https://spdx.org/licenses/GFDL-1.1.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/GFDL-1.1.json", + ReferenceNumber: 337, + Name: "GNU Free Documentation License v1.1", + LicenseID: "GFDL-1.1", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", + }, + IsOsiApproved: false, + }, + "tapr-ohl-1.0": { + Reference: "https://spdx.org/licenses/TAPR-OHL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/TAPR-OHL-1.0.json", + ReferenceNumber: 338, + Name: "TAPR Open Hardware License v1.0", + LicenseID: "TAPR-OHL-1.0", + SeeAlso: []string{ + "https://www.tapr.org/OHL", + }, + IsOsiApproved: false, + }, + "cc-by-nc-sa-3.0": { + Reference: "https://spdx.org/licenses/CC-BY-NC-SA-3.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-SA-3.0.json", + ReferenceNumber: 339, + Name: "Creative Commons Attribution Non Commercial Share Alike 3.0 Unported", + LicenseID: "CC-BY-NC-SA-3.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode", + }, + IsOsiApproved: false, + }, + "cc-by-nc-sa-1.0": { + Reference: "https://spdx.org/licenses/CC-BY-NC-SA-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-SA-1.0.json", + ReferenceNumber: 340, + Name: "Creative Commons Attribution Non Commercial Share Alike 1.0 Generic", + LicenseID: "CC-BY-NC-SA-1.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc-sa/1.0/legalcode", + }, + IsOsiApproved: false, + }, + "bsd-3-clause-open-mpi": { + Reference: "https://spdx.org/licenses/BSD-3-Clause-Open-MPI.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-3-Clause-Open-MPI.json", + ReferenceNumber: 341, + Name: "BSD 3-Clause Open MPI variant", + LicenseID: "BSD-3-Clause-Open-MPI", + SeeAlso: []string{ + "https://www.open-mpi.org/community/license.php", + "http://www.netlib.org/lapack/LICENSE.txt", + }, + IsOsiApproved: false, + }, + "cc-by-1.0": { + Reference: "https://spdx.org/licenses/CC-BY-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-1.0.json", + ReferenceNumber: 342, + Name: "Creative Commons Attribution 1.0 Generic", + LicenseID: "CC-BY-1.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by/1.0/legalcode", + }, + IsOsiApproved: false, + }, + "php-3.01": { + Reference: "https://spdx.org/licenses/PHP-3.01.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/PHP-3.01.json", + ReferenceNumber: 343, + Name: "PHP License v3.01", + LicenseID: "PHP-3.01", + SeeAlso: []string{ + "http://www.php.net/license/3_01.txt", + }, + IsOsiApproved: true, + }, + "padl": { + Reference: "https://spdx.org/licenses/PADL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/PADL.json", + ReferenceNumber: 344, + Name: "PADL License", + LicenseID: "PADL", + SeeAlso: []string{ + "https://git.openldap.org/openldap/openldap/-/blob/master/libraries/libldap/os-local.c?ref_type=heads#L19-23", + }, + IsOsiApproved: false, + }, + "afl-1.1": { + Reference: "https://spdx.org/licenses/AFL-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/AFL-1.1.json", + ReferenceNumber: 345, + Name: "Academic Free License v1.1", + LicenseID: "AFL-1.1", + SeeAlso: []string{ + "http://opensource.linux-mirror.org/licenses/afl-1.1.txt", + "http://wayback.archive.org/web/20021004124254/http://www.opensource.org/licenses/academic.php", + }, + IsOsiApproved: true, + }, + "mit-cmu": { + Reference: "https://spdx.org/licenses/MIT-CMU.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MIT-CMU.json", + ReferenceNumber: 346, + Name: "CMU License", + LicenseID: "MIT-CMU", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", + "https://github.com/python-pillow/Pillow/blob/fffb426092c8db24a5f4b6df243a8a3c01fb63cd/LICENSE", + }, + IsOsiApproved: false, + }, + "bsd-3-clause-flex": { + Reference: "https://spdx.org/licenses/BSD-3-Clause-flex.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-3-Clause-flex.json", + ReferenceNumber: 347, + Name: "BSD 3-Clause Flex variant", + LicenseID: "BSD-3-Clause-flex", + SeeAlso: []string{ + "https://github.com/westes/flex/blob/master/COPYING", + }, + IsOsiApproved: false, + }, + "odbl-1.0": { + Reference: "https://spdx.org/licenses/ODbL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/ODbL-1.0.json", + ReferenceNumber: 348, + Name: "Open Data Commons Open Database License v1.0", + LicenseID: "ODbL-1.0", + SeeAlso: []string{ + "http://www.opendatacommons.org/licenses/odbl/1.0/", + "https://opendatacommons.org/licenses/odbl/1-0/", + }, + IsOsiApproved: false, + }, + "cc-by-nc-4.0": { + Reference: "https://spdx.org/licenses/CC-BY-NC-4.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-4.0.json", + ReferenceNumber: 349, + Name: "Creative Commons Attribution Non Commercial 4.0 International", + LicenseID: "CC-BY-NC-4.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc/4.0/legalcode", + }, + IsOsiApproved: false, + }, + "python-2.0.1": { + Reference: "https://spdx.org/licenses/Python-2.0.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Python-2.0.1.json", + ReferenceNumber: 350, + Name: "Python License 2.0.1", + LicenseID: "Python-2.0.1", + SeeAlso: []string{ + "https://www.python.org/download/releases/2.0.1/license/", + "https://docs.python.org/3/license.html", + "https://github.com/python/cpython/blob/main/LICENSE", + }, + IsOsiApproved: false, + }, + "ipa": { + Reference: "https://spdx.org/licenses/IPA.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/IPA.json", + ReferenceNumber: 351, + Name: "IPA Font License", + LicenseID: "IPA", + SeeAlso: []string{ + "https://opensource.org/licenses/IPA", + }, + IsOsiApproved: true, + }, + "aml": { + Reference: "https://spdx.org/licenses/AML.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/AML.json", + ReferenceNumber: 352, + Name: "Apple MIT License", + LicenseID: "AML", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Apple_MIT_License", + }, + IsOsiApproved: false, + }, + "libselinux-1.0": { + Reference: "https://spdx.org/licenses/libselinux-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/libselinux-1.0.json", + ReferenceNumber: 353, + Name: "libselinux public domain notice", + LicenseID: "libselinux-1.0", + SeeAlso: []string{ + "https://github.com/SELinuxProject/selinux/blob/master/libselinux/LICENSE", + }, + IsOsiApproved: false, + }, + "cc-by-3.0-at": { + Reference: "https://spdx.org/licenses/CC-BY-3.0-AT.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-3.0-AT.json", + ReferenceNumber: 354, + Name: "Creative Commons Attribution 3.0 Austria", + LicenseID: "CC-BY-3.0-AT", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by/3.0/at/legalcode", + }, + IsOsiApproved: false, + }, + "qpl-1.0-inria-2004": { + Reference: "https://spdx.org/licenses/QPL-1.0-INRIA-2004.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/QPL-1.0-INRIA-2004.json", + ReferenceNumber: 355, + Name: "Q Public License 1.0 - INRIA 2004 variant", + LicenseID: "QPL-1.0-INRIA-2004", + SeeAlso: []string{ + "https://github.com/maranget/hevea/blob/master/LICENSE", + }, + IsOsiApproved: false, + }, + "gfdl-1.1-invariants-or-later": { + Reference: "https://spdx.org/licenses/GFDL-1.1-invariants-or-later.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GFDL-1.1-invariants-or-later.json", + ReferenceNumber: 356, + Name: "GNU Free Documentation License v1.1 or later - invariants", + LicenseID: "GFDL-1.1-invariants-or-later", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", + }, + IsOsiApproved: false, + }, + "rdisc": { + Reference: "https://spdx.org/licenses/Rdisc.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Rdisc.json", + ReferenceNumber: 357, + Name: "Rdisc License", + LicenseID: "Rdisc", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Rdisc_License", + }, + IsOsiApproved: false, + }, + "bsd-attribution-hpnd-disclaimer": { + Reference: "https://spdx.org/licenses/BSD-Attribution-HPND-disclaimer.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-Attribution-HPND-disclaimer.json", + ReferenceNumber: 358, + Name: "BSD with Attribution and HPND disclaimer", + LicenseID: "BSD-Attribution-HPND-disclaimer", + SeeAlso: []string{ + "https://github.com/cyrusimap/cyrus-sasl/blob/master/COPYING", + }, + IsOsiApproved: false, + }, + "xerox": { + Reference: "https://spdx.org/licenses/Xerox.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Xerox.json", + ReferenceNumber: 359, + Name: "Xerox License", + LicenseID: "Xerox", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Xerox", + }, + IsOsiApproved: false, + }, + "lppl-1.1": { + Reference: "https://spdx.org/licenses/LPPL-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LPPL-1.1.json", + ReferenceNumber: 360, + Name: "LaTeX Project Public License v1.1", + LicenseID: "LPPL-1.1", + SeeAlso: []string{ + "http://www.latex-project.org/lppl/lppl-1-1.txt", + }, + IsOsiApproved: false, + }, + "ogl-uk-3.0": { + Reference: "https://spdx.org/licenses/OGL-UK-3.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OGL-UK-3.0.json", + ReferenceNumber: 361, + Name: "Open Government Licence v3.0", + LicenseID: "OGL-UK-3.0", + SeeAlso: []string{ + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + }, + IsOsiApproved: false, + }, + "lgpl-3.0": { + Reference: "https://spdx.org/licenses/LGPL-3.0.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/LGPL-3.0.json", + ReferenceNumber: 362, + Name: "GNU Lesser General Public License v3.0 only", + LicenseID: "LGPL-3.0", + SeeAlso: []string{ + "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", + "https://www.gnu.org/licenses/lgpl+gpl-3.0.txt", + "https://opensource.org/licenses/LGPL-3.0", + }, + IsOsiApproved: true, + }, + "lgpl-2.1": { + Reference: "https://spdx.org/licenses/LGPL-2.1.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/LGPL-2.1.json", + ReferenceNumber: 363, + Name: "GNU Lesser General Public License v2.1 only", + LicenseID: "LGPL-2.1", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", + "https://opensource.org/licenses/LGPL-2.1", + }, + IsOsiApproved: true, + }, + "minpack": { + Reference: "https://spdx.org/licenses/Minpack.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Minpack.json", + ReferenceNumber: 364, + Name: "Minpack License", + LicenseID: "Minpack", + SeeAlso: []string{ + "http://www.netlib.org/minpack/disclaimer", + "https://gitlab.com/libeigen/eigen/-/blob/master/COPYING.MINPACK", + }, + IsOsiApproved: false, + }, + "apsl-1.2": { + Reference: "https://spdx.org/licenses/APSL-1.2.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/APSL-1.2.json", + ReferenceNumber: 365, + Name: "Apple Public Source License 1.2", + LicenseID: "APSL-1.2", + SeeAlso: []string{ + "http://www.samurajdata.se/opensource/mirror/licenses/apsl.php", + }, + IsOsiApproved: true, + }, + "eurosym": { + Reference: "https://spdx.org/licenses/Eurosym.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Eurosym.json", + ReferenceNumber: 366, + Name: "Eurosym License", + LicenseID: "Eurosym", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Eurosym", + }, + IsOsiApproved: false, + }, + "bsd-advertising-acknowledgement": { + Reference: "https://spdx.org/licenses/BSD-Advertising-Acknowledgement.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-Advertising-Acknowledgement.json", + ReferenceNumber: 367, + Name: "BSD Advertising Acknowledgement License", + LicenseID: "BSD-Advertising-Acknowledgement", + SeeAlso: []string{ + "https://github.com/python-excel/xlrd/blob/master/LICENSE#L33", + }, + IsOsiApproved: false, + }, + "cc-by-nc-sa-2.0-uk": { + Reference: "https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK.json", + ReferenceNumber: 368, + Name: "Creative Commons Attribution Non Commercial Share Alike 2.0 England and Wales", + LicenseID: "CC-BY-NC-SA-2.0-UK", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc-sa/2.0/uk/legalcode", + }, + IsOsiApproved: false, + }, + "x11-distribute-modifications-variant": { + Reference: "https://spdx.org/licenses/X11-distribute-modifications-variant.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/X11-distribute-modifications-variant.json", + ReferenceNumber: 369, + Name: "X11 License Distribution Modification Variant", + LicenseID: "X11-distribute-modifications-variant", + SeeAlso: []string{ + "https://github.com/mirror/ncurses/blob/master/COPYING", + }, + IsOsiApproved: false, + }, + "w3m": { + Reference: "https://spdx.org/licenses/w3m.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/w3m.json", + ReferenceNumber: 370, + Name: "w3m License", + LicenseID: "w3m", + SeeAlso: []string{ + "https://github.com/tats/w3m/blob/master/COPYING", + }, + IsOsiApproved: false, + }, + "bzip2-1.0.5": { + Reference: "https://spdx.org/licenses/bzip2-1.0.5.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/bzip2-1.0.5.json", + ReferenceNumber: 371, + Name: "bzip2 and libbzip2 License v1.0.5", + LicenseID: "bzip2-1.0.5", + SeeAlso: []string{ + "https://sourceware.org/bzip2/1.0.5/bzip2-manual-1.0.5.html", + "http://bzip.org/1.0.5/bzip2-manual-1.0.5.html", + }, + IsOsiApproved: false, + }, + "pnmstitch": { + Reference: "https://spdx.org/licenses/pnmstitch.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/pnmstitch.json", + ReferenceNumber: 372, + Name: "pnmstitch License", + LicenseID: "pnmstitch", + SeeAlso: []string{ + "https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/editor/pnmstitch.c#l2", + }, + IsOsiApproved: false, + }, + "cpal-1.0": { + Reference: "https://spdx.org/licenses/CPAL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CPAL-1.0.json", + ReferenceNumber: 373, + Name: "Common Public Attribution License 1.0", + LicenseID: "CPAL-1.0", + SeeAlso: []string{ + "https://opensource.org/licenses/CPAL-1.0", + }, + IsOsiApproved: true, + }, + "sissl": { + Reference: "https://spdx.org/licenses/SISSL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SISSL.json", + ReferenceNumber: 374, + Name: "Sun Industry Standards Source License v1.1", + LicenseID: "SISSL", + SeeAlso: []string{ + "http://www.openoffice.org/licenses/sissl_license.html", + "https://opensource.org/licenses/SISSL", + }, + IsOsiApproved: true, + }, + "liliq-r-1.1": { + Reference: "https://spdx.org/licenses/LiLiQ-R-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LiLiQ-R-1.1.json", + ReferenceNumber: 375, + Name: "Licence Libre du Québec – Réciprocité version 1.1", + LicenseID: "LiLiQ-R-1.1", + SeeAlso: []string{ + "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/", + "http://opensource.org/licenses/LiLiQ-R-1.1", + }, + IsOsiApproved: true, + }, + "cc-by-nc-sa-2.0": { + Reference: "https://spdx.org/licenses/CC-BY-NC-SA-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-SA-2.0.json", + ReferenceNumber: 376, + Name: "Creative Commons Attribution Non Commercial Share Alike 2.0 Generic", + LicenseID: "CC-BY-NC-SA-2.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode", + }, + IsOsiApproved: false, + }, + "unlicense": { + Reference: "https://spdx.org/licenses/Unlicense.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Unlicense.json", + ReferenceNumber: 377, + Name: "The Unlicense", + LicenseID: "Unlicense", + SeeAlso: []string{ + "https://unlicense.org/", + }, + IsOsiApproved: true, + }, + "linux-openib": { + Reference: "https://spdx.org/licenses/Linux-OpenIB.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Linux-OpenIB.json", + ReferenceNumber: 378, + Name: "Linux Kernel Variant of OpenIB.org license", + LicenseID: "Linux-OpenIB", + SeeAlso: []string{ + "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/infiniband/core/sa.h", + }, + IsOsiApproved: false, + }, + "loop": { + Reference: "https://spdx.org/licenses/LOOP.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LOOP.json", + ReferenceNumber: 379, + Name: "Common Lisp LOOP License", + LicenseID: "LOOP", + SeeAlso: []string{ + "https://gitlab.com/embeddable-common-lisp/ecl/-/blob/develop/src/lsp/loop.lsp", + "http://git.savannah.gnu.org/cgit/gcl.git/tree/gcl/lsp/gcl_loop.lsp?h=Version_2_6_13pre", + "https://sourceforge.net/p/sbcl/sbcl/ci/master/tree/src/code/loop.lisp", + "https://github.com/cl-adams/adams/blob/master/LICENSE.md", + "https://github.com/blakemcbride/eclipse-lisp/blob/master/lisp/loop.lisp", + "https://gitlab.common-lisp.net/cmucl/cmucl/-/blob/master/src/code/loop.lisp", + }, + IsOsiApproved: false, + }, + "cdla-sharing-1.0": { + Reference: "https://spdx.org/licenses/CDLA-Sharing-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CDLA-Sharing-1.0.json", + ReferenceNumber: 380, + Name: "Community Data License Agreement Sharing 1.0", + LicenseID: "CDLA-Sharing-1.0", + SeeAlso: []string{ + "https://cdla.io/sharing-1-0", + }, + IsOsiApproved: false, + }, + "cc-by-3.0": { + Reference: "https://spdx.org/licenses/CC-BY-3.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-3.0.json", + ReferenceNumber: 381, + Name: "Creative Commons Attribution 3.0 Unported", + LicenseID: "CC-BY-3.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by/3.0/legalcode", + }, + IsOsiApproved: false, + }, + "oldap-2.4": { + Reference: "https://spdx.org/licenses/OLDAP-2.4.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OLDAP-2.4.json", + ReferenceNumber: 382, + Name: "Open LDAP Public License v2.4", + LicenseID: "OLDAP-2.4", + SeeAlso: []string{ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cd1284c4a91a8a380d904eee68d1583f989ed386", + }, + IsOsiApproved: false, + }, + "cmu-mach": { + Reference: "https://spdx.org/licenses/CMU-Mach.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CMU-Mach.json", + ReferenceNumber: 383, + Name: "CMU Mach License", + LicenseID: "CMU-Mach", + SeeAlso: []string{ + "https://www.cs.cmu.edu/~410/licenses.html", + }, + IsOsiApproved: false, + }, + "liliq-p-1.1": { + Reference: "https://spdx.org/licenses/LiLiQ-P-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LiLiQ-P-1.1.json", + ReferenceNumber: 384, + Name: "Licence Libre du Québec – Permissive version 1.1", + LicenseID: "LiLiQ-P-1.1", + SeeAlso: []string{ + "https://forge.gouv.qc.ca/licence/fr/liliq-v1-1/", + "http://opensource.org/licenses/LiLiQ-P-1.1", + }, + IsOsiApproved: true, + }, + "lgpl-2.0-only": { + Reference: "https://spdx.org/licenses/LGPL-2.0-only.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LGPL-2.0-only.json", + ReferenceNumber: 385, + Name: "GNU Library General Public License v2 only", + LicenseID: "LGPL-2.0-only", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html", + }, + IsOsiApproved: true, + }, + "apafml": { + Reference: "https://spdx.org/licenses/APAFML.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/APAFML.json", + ReferenceNumber: 386, + Name: "Adobe Postscript AFM License", + LicenseID: "APAFML", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM", + }, + IsOsiApproved: false, + }, + "entessa": { + Reference: "https://spdx.org/licenses/Entessa.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Entessa.json", + ReferenceNumber: 387, + Name: "Entessa Public License v1.0", + LicenseID: "Entessa", + SeeAlso: []string{ + "https://opensource.org/licenses/Entessa", + }, + IsOsiApproved: true, + }, + "cnri-python": { + Reference: "https://spdx.org/licenses/CNRI-Python.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CNRI-Python.json", + ReferenceNumber: 388, + Name: "CNRI Python License", + LicenseID: "CNRI-Python", + SeeAlso: []string{ + "https://opensource.org/licenses/CNRI-Python", + }, + IsOsiApproved: true, + }, + "ogc-1.0": { + Reference: "https://spdx.org/licenses/OGC-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OGC-1.0.json", + ReferenceNumber: 389, + Name: "OGC Software License, Version 1.0", + LicenseID: "OGC-1.0", + SeeAlso: []string{ + "https://www.ogc.org/ogc/software/1.0", + }, + IsOsiApproved: false, + }, + "hpnd-uc": { + Reference: "https://spdx.org/licenses/HPND-UC.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/HPND-UC.json", + ReferenceNumber: 390, + Name: "Historical Permission Notice and Disclaimer - University of California variant", + LicenseID: "HPND-UC", + SeeAlso: []string{ + "https://core.tcl-lang.org/tk/file?name=compat/unistd.h", + }, + IsOsiApproved: false, + }, + "cc-by-3.0-igo": { + Reference: "https://spdx.org/licenses/CC-BY-3.0-IGO.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-3.0-IGO.json", + ReferenceNumber: 391, + Name: "Creative Commons Attribution 3.0 IGO", + LicenseID: "CC-BY-3.0-IGO", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by/3.0/igo/legalcode", + }, + IsOsiApproved: false, + }, + "mtll": { + Reference: "https://spdx.org/licenses/MTLL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MTLL.json", + ReferenceNumber: 392, + Name: "Matrix Template Library License", + LicenseID: "MTLL", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License", + }, + IsOsiApproved: false, + }, + "hpnd-markus-kuhn": { + Reference: "https://spdx.org/licenses/HPND-Markus-Kuhn.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/HPND-Markus-Kuhn.json", + ReferenceNumber: 393, + Name: "Historical Permission Notice and Disclaimer - Markus Kuhn variant", + LicenseID: "HPND-Markus-Kuhn", + SeeAlso: []string{ + "https://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c", + "https://sourceware.org/git/?p=binutils-gdb.git;a=blob;f=readline/readline/support/wcwidth.c;h=0f5ec995796f4813abbcf4972aec0378ab74722a;hb=HEAD#l55", + }, + IsOsiApproved: false, + }, + "cc-by-nc-nd-3.0-igo": { + Reference: "https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO.json", + ReferenceNumber: 394, + Name: "Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO", + LicenseID: "CC-BY-NC-ND-3.0-IGO", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode", + }, + IsOsiApproved: false, + }, + "ms-rl": { + Reference: "https://spdx.org/licenses/MS-RL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MS-RL.json", + ReferenceNumber: 395, + Name: "Microsoft Reciprocal License", + LicenseID: "MS-RL", + SeeAlso: []string{ + "http://www.microsoft.com/opensource/licenses.mspx", + "https://opensource.org/licenses/MS-RL", + }, + IsOsiApproved: true, + }, + "amdplpa": { + Reference: "https://spdx.org/licenses/AMDPLPA.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/AMDPLPA.json", + ReferenceNumber: 396, + Name: "AMD's plpa_map.c License", + LicenseID: "AMDPLPA", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License", + }, + IsOsiApproved: false, + }, + "lal-1.2": { + Reference: "https://spdx.org/licenses/LAL-1.2.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LAL-1.2.json", + ReferenceNumber: 397, + Name: "Licence Art Libre 1.2", + LicenseID: "LAL-1.2", + SeeAlso: []string{ + "http://artlibre.org/licence/lal/licence-art-libre-12/", + }, + IsOsiApproved: false, + }, + "oldap-2.2.1": { + Reference: "https://spdx.org/licenses/OLDAP-2.2.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OLDAP-2.2.1.json", + ReferenceNumber: 398, + Name: "Open LDAP Public License v2.2.1", + LicenseID: "OLDAP-2.2.1", + SeeAlso: []string{ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=4bc786f34b50aa301be6f5600f58a980070f481e", + }, + IsOsiApproved: false, + }, + "curl": { + Reference: "https://spdx.org/licenses/curl.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/curl.json", + ReferenceNumber: 399, + Name: "curl License", + LicenseID: "curl", + SeeAlso: []string{ + "https://github.com/bagder/curl/blob/master/COPYING", + }, + IsOsiApproved: false, + }, + "oldap-1.2": { + Reference: "https://spdx.org/licenses/OLDAP-1.2.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OLDAP-1.2.json", + ReferenceNumber: 400, + Name: "Open LDAP Public License v1.2", + LicenseID: "OLDAP-1.2", + SeeAlso: []string{ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=42b0383c50c299977b5893ee695cf4e486fb0dc7", + }, + IsOsiApproved: false, + }, + "inner-net-2.0": { + Reference: "https://spdx.org/licenses/Inner-Net-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Inner-Net-2.0.json", + ReferenceNumber: 401, + Name: "Inner Net License v2.0", + LicenseID: "Inner-Net-2.0", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Inner_Net_License", + "https://sourceware.org/git/?p=glibc.git;a=blob;f=LICENSES;h=530893b1dc9ea00755603c68fb36bd4fc38a7be8;hb=HEAD#l207", + }, + IsOsiApproved: false, + }, + "termreadkey": { + Reference: "https://spdx.org/licenses/TermReadKey.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/TermReadKey.json", + ReferenceNumber: 402, + Name: "TermReadKey License", + LicenseID: "TermReadKey", + SeeAlso: []string{ + "https://github.com/jonathanstowe/TermReadKey/blob/master/README#L9-L10", + }, + IsOsiApproved: false, + }, + "agpl-1.0": { + Reference: "https://spdx.org/licenses/AGPL-1.0.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/AGPL-1.0.json", + ReferenceNumber: 403, + Name: "Affero General Public License v1.0", + LicenseID: "AGPL-1.0", + SeeAlso: []string{ + "http://www.affero.org/oagpl.html", + }, + IsOsiApproved: false, + }, + "artistic-1.0": { + Reference: "https://spdx.org/licenses/Artistic-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Artistic-1.0.json", + ReferenceNumber: 404, + Name: "Artistic License 1.0", + LicenseID: "Artistic-1.0", + SeeAlso: []string{ + "https://opensource.org/licenses/Artistic-1.0", + }, + IsOsiApproved: true, + }, + "cecill-1.1": { + Reference: "https://spdx.org/licenses/CECILL-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CECILL-1.1.json", + ReferenceNumber: 405, + Name: "CeCILL Free Software License Agreement v1.1", + LicenseID: "CECILL-1.1", + SeeAlso: []string{ + "http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html", + }, + IsOsiApproved: false, + }, + "ipl-1.0": { + Reference: "https://spdx.org/licenses/IPL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/IPL-1.0.json", + ReferenceNumber: 406, + Name: "IBM Public License v1.0", + LicenseID: "IPL-1.0", + SeeAlso: []string{ + "https://opensource.org/licenses/IPL-1.0", + }, + IsOsiApproved: true, + }, + "lpl-1.02": { + Reference: "https://spdx.org/licenses/LPL-1.02.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LPL-1.02.json", + ReferenceNumber: 407, + Name: "Lucent Public License v1.02", + LicenseID: "LPL-1.02", + SeeAlso: []string{ + "http://plan9.bell-labs.com/plan9/license.html", + "https://opensource.org/licenses/LPL-1.02", + }, + IsOsiApproved: true, + }, + "baekmuk": { + Reference: "https://spdx.org/licenses/Baekmuk.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Baekmuk.json", + ReferenceNumber: 408, + Name: "Baekmuk License", + LicenseID: "Baekmuk", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing:Baekmuk?rd=Licensing/Baekmuk", + }, + IsOsiApproved: false, + }, + "nlod-1.0": { + Reference: "https://spdx.org/licenses/NLOD-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/NLOD-1.0.json", + ReferenceNumber: 409, + Name: "Norwegian Licence for Open Government Data (NLOD) 1.0", + LicenseID: "NLOD-1.0", + SeeAlso: []string{ + "http://data.norge.no/nlod/en/1.0", + }, + IsOsiApproved: false, + }, + "sendmail-8.23": { + Reference: "https://spdx.org/licenses/Sendmail-8.23.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Sendmail-8.23.json", + ReferenceNumber: 410, + Name: "Sendmail License 8.23", + LicenseID: "Sendmail-8.23", + SeeAlso: []string{ + "https://www.proofpoint.com/sites/default/files/sendmail-license.pdf", + "https://web.archive.org/web/20181003101040/https://www.proofpoint.com/sites/default/files/sendmail-license.pdf", + }, + IsOsiApproved: false, + }, + "ngpl": { + Reference: "https://spdx.org/licenses/NGPL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/NGPL.json", + ReferenceNumber: 411, + Name: "Nethack General Public License", + LicenseID: "NGPL", + SeeAlso: []string{ + "https://opensource.org/licenses/NGPL", + }, + IsOsiApproved: true, + }, + "sspl-1.0": { + Reference: "https://spdx.org/licenses/SSPL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SSPL-1.0.json", + ReferenceNumber: 412, + Name: "Server Side Public License, v 1", + LicenseID: "SSPL-1.0", + SeeAlso: []string{ + "https://www.mongodb.com/licensing/server-side-public-license", + }, + IsOsiApproved: false, + }, + "ncsa": { + Reference: "https://spdx.org/licenses/NCSA.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/NCSA.json", + ReferenceNumber: 413, + Name: "University of Illinois/NCSA Open Source License", + LicenseID: "NCSA", + SeeAlso: []string{ + "http://otm.illinois.edu/uiuc_openSource", + "https://opensource.org/licenses/NCSA", + }, + IsOsiApproved: true, + }, + "cc0-1.0": { + Reference: "https://spdx.org/licenses/CC0-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC0-1.0.json", + ReferenceNumber: 414, + Name: "Creative Commons Zero v1.0 Universal", + LicenseID: "CC0-1.0", + SeeAlso: []string{ + "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + }, + IsOsiApproved: false, + }, + "cecill-c": { + Reference: "https://spdx.org/licenses/CECILL-C.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CECILL-C.json", + ReferenceNumber: 415, + Name: "CeCILL-C Free Software License Agreement", + LicenseID: "CECILL-C", + SeeAlso: []string{ + "http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html", + }, + IsOsiApproved: false, + }, + "furuseth": { + Reference: "https://spdx.org/licenses/Furuseth.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Furuseth.json", + ReferenceNumber: 416, + Name: "Furuseth License", + LicenseID: "Furuseth", + SeeAlso: []string{ + "https://git.openldap.org/openldap/openldap/-/blob/master/COPYRIGHT?ref_type=heads#L39-51", + }, + IsOsiApproved: false, + }, + "jasper-2.0": { + Reference: "https://spdx.org/licenses/JasPer-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/JasPer-2.0.json", + ReferenceNumber: 417, + Name: "JasPer License", + LicenseID: "JasPer-2.0", + SeeAlso: []string{ + "http://www.ece.uvic.ca/~mdadams/jasper/LICENSE", + }, + IsOsiApproved: false, + }, + "lgpl-3.0-or-later": { + Reference: "https://spdx.org/licenses/LGPL-3.0-or-later.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LGPL-3.0-or-later.json", + ReferenceNumber: 418, + Name: "GNU Lesser General Public License v3.0 or later", + LicenseID: "LGPL-3.0-or-later", + SeeAlso: []string{ + "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", + "https://www.gnu.org/licenses/lgpl+gpl-3.0.txt", + "https://opensource.org/licenses/LGPL-3.0", + }, + IsOsiApproved: true, + }, + "libpng": { + Reference: "https://spdx.org/licenses/Libpng.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Libpng.json", + ReferenceNumber: 419, + Name: "libpng License", + LicenseID: "Libpng", + SeeAlso: []string{ + "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt", + }, + IsOsiApproved: false, + }, + "linux-man-pages-copyleft-var": { + Reference: "https://spdx.org/licenses/Linux-man-pages-copyleft-var.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Linux-man-pages-copyleft-var.json", + ReferenceNumber: 420, + Name: "Linux man-pages Copyleft Variant", + LicenseID: "Linux-man-pages-copyleft-var", + SeeAlso: []string{ + "https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/man2/set_mempolicy.2#n5", + }, + IsOsiApproved: false, + }, + "oldap-2.2.2": { + Reference: "https://spdx.org/licenses/OLDAP-2.2.2.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OLDAP-2.2.2.json", + ReferenceNumber: 421, + Name: "Open LDAP Public License 2.2.2", + LicenseID: "OLDAP-2.2.2", + SeeAlso: []string{ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=df2cc1e21eb7c160695f5b7cffd6296c151ba188", + }, + IsOsiApproved: false, + }, + "freebsd-doc": { + Reference: "https://spdx.org/licenses/FreeBSD-DOC.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/FreeBSD-DOC.json", + ReferenceNumber: 422, + Name: "FreeBSD Documentation License", + LicenseID: "FreeBSD-DOC", + SeeAlso: []string{ + "https://www.freebsd.org/copyright/freebsd-doc-license/", + }, + IsOsiApproved: false, + }, + "cc-by-nc-nd-3.0-de": { + Reference: "https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE.json", + ReferenceNumber: 423, + Name: "Creative Commons Attribution Non Commercial No Derivatives 3.0 Germany", + LicenseID: "CC-BY-NC-ND-3.0-DE", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc-nd/3.0/de/legalcode", + }, + IsOsiApproved: false, + }, + "nist-pd-fallback": { + Reference: "https://spdx.org/licenses/NIST-PD-fallback.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/NIST-PD-fallback.json", + ReferenceNumber: 424, + Name: "NIST Public Domain Notice with license fallback", + LicenseID: "NIST-PD-fallback", + SeeAlso: []string{ + "https://github.com/usnistgov/jsip/blob/59700e6926cbe96c5cdae897d9a7d2656b42abe3/LICENSE", + "https://github.com/usnistgov/fipy/blob/86aaa5c2ba2c6f1be19593c5986071cf6568cc34/LICENSE.rst", + }, + IsOsiApproved: false, + }, + "widget-workshop": { + Reference: "https://spdx.org/licenses/Widget-Workshop.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Widget-Workshop.json", + ReferenceNumber: 425, + Name: "Widget Workshop License", + LicenseID: "Widget-Workshop", + SeeAlso: []string{ + "https://github.com/novnc/noVNC/blob/master/core/crypto/des.js#L24", + }, + IsOsiApproved: false, + }, + "rpl-1.1": { + Reference: "https://spdx.org/licenses/RPL-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/RPL-1.1.json", + ReferenceNumber: 426, + Name: "Reciprocal Public License 1.1", + LicenseID: "RPL-1.1", + SeeAlso: []string{ + "https://opensource.org/licenses/RPL-1.1", + }, + IsOsiApproved: true, + }, + "aswf-digital-assets-1.1": { + Reference: "https://spdx.org/licenses/ASWF-Digital-Assets-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/ASWF-Digital-Assets-1.1.json", + ReferenceNumber: 427, + Name: "ASWF Digital Assets License 1.1", + LicenseID: "ASWF-Digital-Assets-1.1", + SeeAlso: []string{ + "https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/aswf_digital_assets_license_v1.1.txt", + }, + IsOsiApproved: false, + }, + "net-snmp": { + Reference: "https://spdx.org/licenses/Net-SNMP.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Net-SNMP.json", + ReferenceNumber: 428, + Name: "Net-SNMP License", + LicenseID: "Net-SNMP", + SeeAlso: []string{ + "http://net-snmp.sourceforge.net/about/license.html", + }, + IsOsiApproved: false, + }, + "cc-by-nc-sa-2.5": { + Reference: "https://spdx.org/licenses/CC-BY-NC-SA-2.5.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-SA-2.5.json", + ReferenceNumber: 429, + Name: "Creative Commons Attribution Non Commercial Share Alike 2.5 Generic", + LicenseID: "CC-BY-NC-SA-2.5", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode", + }, + IsOsiApproved: false, + }, + "unicode-dfs-2015": { + Reference: "https://spdx.org/licenses/Unicode-DFS-2015.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Unicode-DFS-2015.json", + ReferenceNumber: 430, + Name: "Unicode License Agreement - Data Files and Software (2015)", + LicenseID: "Unicode-DFS-2015", + SeeAlso: []string{ + "https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html", + }, + IsOsiApproved: false, + }, + "gfdl-1.2": { + Reference: "https://spdx.org/licenses/GFDL-1.2.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/GFDL-1.2.json", + ReferenceNumber: 431, + Name: "GNU Free Documentation License v1.2", + LicenseID: "GFDL-1.2", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", + }, + IsOsiApproved: false, + }, + "intel": { + Reference: "https://spdx.org/licenses/Intel.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Intel.json", + ReferenceNumber: 432, + Name: "Intel Open Source License", + LicenseID: "Intel", + SeeAlso: []string{ + "https://opensource.org/licenses/Intel", + }, + IsOsiApproved: true, + }, + "sgp4": { + Reference: "https://spdx.org/licenses/SGP4.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SGP4.json", + ReferenceNumber: 433, + Name: "SGP4 Permission Notice", + LicenseID: "SGP4", + SeeAlso: []string{ + "https://celestrak.org/publications/AIAA/2006-6753/faq.php", + }, + IsOsiApproved: false, + }, + "zimbra-1.3": { + Reference: "https://spdx.org/licenses/Zimbra-1.3.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Zimbra-1.3.json", + ReferenceNumber: 434, + Name: "Zimbra Public License v1.3", + LicenseID: "Zimbra-1.3", + SeeAlso: []string{ + "http://web.archive.org/web/20100302225219/http://www.zimbra.com/license/zimbra-public-license-1-3.html", + }, + IsOsiApproved: false, + }, + "ogtsl": { + Reference: "https://spdx.org/licenses/OGTSL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OGTSL.json", + ReferenceNumber: 435, + Name: "Open Group Test Suite License", + LicenseID: "OGTSL", + SeeAlso: []string{ + "http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt", + "https://opensource.org/licenses/OGTSL", + }, + IsOsiApproved: true, + }, + "pddl-1.0": { + Reference: "https://spdx.org/licenses/PDDL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/PDDL-1.0.json", + ReferenceNumber: 436, + Name: "Open Data Commons Public Domain Dedication & License 1.0", + LicenseID: "PDDL-1.0", + SeeAlso: []string{ + "http://opendatacommons.org/licenses/pddl/1.0/", + "https://opendatacommons.org/licenses/pddl/", + }, + IsOsiApproved: false, + }, + "unixcrypt": { + Reference: "https://spdx.org/licenses/UnixCrypt.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/UnixCrypt.json", + ReferenceNumber: 437, + Name: "UnixCrypt License", + LicenseID: "UnixCrypt", + SeeAlso: []string{ + "https://foss.heptapod.net/python-libs/passlib/-/blob/branch/stable/LICENSE#L70", + "https://opensource.apple.com/source/JBoss/JBoss-737/jboss-all/jetty/src/main/org/mortbay/util/UnixCrypt.java.auto.html", + "https://archive.eclipse.org/jetty/8.0.1.v20110908/xref/org/eclipse/jetty/http/security/UnixCrypt.html", + }, + IsOsiApproved: false, + }, + "cern-ohl-w-2.0": { + Reference: "https://spdx.org/licenses/CERN-OHL-W-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CERN-OHL-W-2.0.json", + ReferenceNumber: 438, + Name: "CERN Open Hardware Licence Version 2 - Weakly Reciprocal", + LicenseID: "CERN-OHL-W-2.0", + SeeAlso: []string{ + "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2", + }, + IsOsiApproved: true, + }, + "gfdl-1.3-only": { + Reference: "https://spdx.org/licenses/GFDL-1.3-only.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GFDL-1.3-only.json", + ReferenceNumber: 439, + Name: "GNU Free Documentation License v1.3 only", + LicenseID: "GFDL-1.3-only", + SeeAlso: []string{ + "https://www.gnu.org/licenses/fdl-1.3.txt", + }, + IsOsiApproved: false, + }, + "cc-by-nc-2.5": { + Reference: "https://spdx.org/licenses/CC-BY-NC-2.5.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-2.5.json", + ReferenceNumber: 440, + Name: "Creative Commons Attribution Non Commercial 2.5 Generic", + LicenseID: "CC-BY-NC-2.5", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc/2.5/legalcode", + }, + IsOsiApproved: false, + }, + "erlpl-1.1": { + Reference: "https://spdx.org/licenses/ErlPL-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/ErlPL-1.1.json", + ReferenceNumber: 441, + Name: "Erlang Public License v1.1", + LicenseID: "ErlPL-1.1", + SeeAlso: []string{ + "http://www.erlang.org/EPLICENSE", + }, + IsOsiApproved: false, + }, + "magaz": { + Reference: "https://spdx.org/licenses/magaz.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/magaz.json", + ReferenceNumber: 442, + Name: "magaz License", + LicenseID: "magaz", + SeeAlso: []string{ + "https://mirrors.nic.cz/tex-archive/macros/latex/contrib/magaz/magaz.tex", + }, + IsOsiApproved: false, + }, + "borceux": { + Reference: "https://spdx.org/licenses/Borceux.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Borceux.json", + ReferenceNumber: 443, + Name: "Borceux license", + LicenseID: "Borceux", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Borceux", + }, + IsOsiApproved: false, + }, + "app-s2p": { + Reference: "https://spdx.org/licenses/App-s2p.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/App-s2p.json", + ReferenceNumber: 444, + Name: "App::s2p License", + LicenseID: "App-s2p", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/App-s2p", + }, + IsOsiApproved: false, + }, + "cc-by-nc-nd-4.0": { + Reference: "https://spdx.org/licenses/CC-BY-NC-ND-4.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-ND-4.0.json", + ReferenceNumber: 445, + Name: "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + LicenseID: "CC-BY-NC-ND-4.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode", + }, + IsOsiApproved: false, + }, + "agpl-3.0": { + Reference: "https://spdx.org/licenses/AGPL-3.0.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/AGPL-3.0.json", + ReferenceNumber: 446, + Name: "GNU Affero General Public License v3.0", + LicenseID: "AGPL-3.0", + SeeAlso: []string{ + "https://www.gnu.org/licenses/agpl.txt", + "https://opensource.org/licenses/AGPL-3.0", + }, + IsOsiApproved: true, + }, + "cecill-2.1": { + Reference: "https://spdx.org/licenses/CECILL-2.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CECILL-2.1.json", + ReferenceNumber: 447, + Name: "CeCILL Free Software License Agreement v2.1", + LicenseID: "CECILL-2.1", + SeeAlso: []string{ + "http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html", + }, + IsOsiApproved: true, + }, + "ogl-uk-2.0": { + Reference: "https://spdx.org/licenses/OGL-UK-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OGL-UK-2.0.json", + ReferenceNumber: 448, + Name: "Open Government Licence v2.0", + LicenseID: "OGL-UK-2.0", + SeeAlso: []string{ + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/", + }, + IsOsiApproved: false, + }, + "bsd-protection": { + Reference: "https://spdx.org/licenses/BSD-Protection.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-Protection.json", + ReferenceNumber: 449, + Name: "BSD Protection License", + LicenseID: "BSD-Protection", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/BSD_Protection_License", + }, + IsOsiApproved: false, + }, + "cecill-b": { + Reference: "https://spdx.org/licenses/CECILL-B.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CECILL-B.json", + ReferenceNumber: 450, + Name: "CeCILL-B Free Software License Agreement", + LicenseID: "CECILL-B", + SeeAlso: []string{ + "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html", + }, + IsOsiApproved: false, + }, + "bsd-systemics": { + Reference: "https://spdx.org/licenses/BSD-Systemics.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-Systemics.json", + ReferenceNumber: 451, + Name: "Systemics BSD variant license", + LicenseID: "BSD-Systemics", + SeeAlso: []string{ + "https://metacpan.org/release/DPARIS/Crypt-DES-2.07/source/COPYRIGHT", + }, + IsOsiApproved: false, + }, + "gpl-2.0-with-classpath-exception": { + Reference: "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.json", + ReferenceNumber: 452, + Name: "GNU General Public License v2.0 w/Classpath exception", + LicenseID: "GPL-2.0-with-classpath-exception", + SeeAlso: []string{ + "https://www.gnu.org/software/classpath/license.html", + }, + IsOsiApproved: false, + }, + "osl-1.0": { + Reference: "https://spdx.org/licenses/OSL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OSL-1.0.json", + ReferenceNumber: 453, + Name: "Open Software License 1.0", + LicenseID: "OSL-1.0", + SeeAlso: []string{ + "https://opensource.org/licenses/OSL-1.0", + }, + IsOsiApproved: true, + }, + "epics": { + Reference: "https://spdx.org/licenses/EPICS.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/EPICS.json", + ReferenceNumber: 454, + Name: "EPICS Open License", + LicenseID: "EPICS", + SeeAlso: []string{ + "https://epics.anl.gov/license/open.php", + }, + IsOsiApproved: false, + }, + "gfdl-1.3-no-invariants-only": { + Reference: "https://spdx.org/licenses/GFDL-1.3-no-invariants-only.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GFDL-1.3-no-invariants-only.json", + ReferenceNumber: 455, + Name: "GNU Free Documentation License v1.3 only - no invariants", + LicenseID: "GFDL-1.3-no-invariants-only", + SeeAlso: []string{ + "https://www.gnu.org/licenses/fdl-1.3.txt", + }, + IsOsiApproved: false, + }, + "rpsl-1.0": { + Reference: "https://spdx.org/licenses/RPSL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/RPSL-1.0.json", + ReferenceNumber: 456, + Name: "RealNetworks Public Source License v1.0", + LicenseID: "RPSL-1.0", + SeeAlso: []string{ + "https://helixcommunity.org/content/rpsl", + "https://opensource.org/licenses/RPSL-1.0", + }, + IsOsiApproved: true, + }, + "cpl-1.0": { + Reference: "https://spdx.org/licenses/CPL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CPL-1.0.json", + ReferenceNumber: 457, + Name: "Common Public License 1.0", + LicenseID: "CPL-1.0", + SeeAlso: []string{ + "https://opensource.org/licenses/CPL-1.0", + }, + IsOsiApproved: true, + }, + "efl-2.0": { + Reference: "https://spdx.org/licenses/EFL-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/EFL-2.0.json", + ReferenceNumber: 458, + Name: "Eiffel Forum License v2.0", + LicenseID: "EFL-2.0", + SeeAlso: []string{ + "http://www.eiffel-nice.org/license/eiffel-forum-license-2.html", + "https://opensource.org/licenses/EFL-2.0", + }, + IsOsiApproved: true, + }, + "npl-1.1": { + Reference: "https://spdx.org/licenses/NPL-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/NPL-1.1.json", + ReferenceNumber: 459, + Name: "Netscape Public License v1.1", + LicenseID: "NPL-1.1", + SeeAlso: []string{ + "http://www.mozilla.org/MPL/NPL/1.1/", + }, + IsOsiApproved: false, + }, + "cube": { + Reference: "https://spdx.org/licenses/Cube.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Cube.json", + ReferenceNumber: 460, + Name: "Cube License", + LicenseID: "Cube", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Cube", + }, + IsOsiApproved: false, + }, + "hpnd-sell-regexpr": { + Reference: "https://spdx.org/licenses/HPND-sell-regexpr.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/HPND-sell-regexpr.json", + ReferenceNumber: 461, + Name: "Historical Permission Notice and Disclaimer - sell regexpr variant", + LicenseID: "HPND-sell-regexpr", + SeeAlso: []string{ + "https://gitlab.com/bacula-org/bacula/-/blob/Branch-11.0/bacula/LICENSE-FOSS?ref_type=heads#L245", + }, + IsOsiApproved: false, + }, + "cc-by-nc-sa-3.0-de": { + Reference: "https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE.json", + ReferenceNumber: 462, + Name: "Creative Commons Attribution Non Commercial Share Alike 3.0 Germany", + LicenseID: "CC-BY-NC-SA-3.0-DE", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc-sa/3.0/de/legalcode", + }, + IsOsiApproved: false, + }, + "ampas": { + Reference: "https://spdx.org/licenses/AMPAS.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/AMPAS.json", + ReferenceNumber: 463, + Name: "Academy of Motion Picture Arts and Sciences BSD", + LicenseID: "AMPAS", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD", + }, + IsOsiApproved: false, + }, + "nlod-2.0": { + Reference: "https://spdx.org/licenses/NLOD-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/NLOD-2.0.json", + ReferenceNumber: 464, + Name: "Norwegian Licence for Open Government Data (NLOD) 2.0", + LicenseID: "NLOD-2.0", + SeeAlso: []string{ + "http://data.norge.no/nlod/en/2.0", + }, + IsOsiApproved: false, + }, + "ttwl": { + Reference: "https://spdx.org/licenses/TTWL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/TTWL.json", + ReferenceNumber: 465, + Name: "Text-Tabs+Wrap License", + LicenseID: "TTWL", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/TTWL", + "https://github.com/ap/Text-Tabs/blob/master/lib.modern/Text/Tabs.pm#L148", + }, + IsOsiApproved: false, + }, + "swl": { + Reference: "https://spdx.org/licenses/SWL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SWL.json", + ReferenceNumber: 466, + Name: "Scheme Widget Library (SWL) Software License Agreement", + LicenseID: "SWL", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/SWL", + }, + IsOsiApproved: false, + }, + "mit-modern-variant": { + Reference: "https://spdx.org/licenses/MIT-Modern-Variant.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MIT-Modern-Variant.json", + ReferenceNumber: 467, + Name: "MIT License Modern Variant", + LicenseID: "MIT-Modern-Variant", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing:MIT#Modern_Variants", + "https://ptolemy.berkeley.edu/copyright.htm", + "https://pirlwww.lpl.arizona.edu/resources/guide/software/PerlTk/Tixlic.html", + }, + IsOsiApproved: true, + }, + "fsfullrwd": { + Reference: "https://spdx.org/licenses/FSFULLRWD.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/FSFULLRWD.json", + ReferenceNumber: 468, + Name: "FSF Unlimited License (With License Retention and Warranty Disclaimer)", + LicenseID: "FSFULLRWD", + SeeAlso: []string{ + "https://lists.gnu.org/archive/html/autoconf/2012-04/msg00061.html", + }, + IsOsiApproved: false, + }, + "ncgl-uk-2.0": { + Reference: "https://spdx.org/licenses/NCGL-UK-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/NCGL-UK-2.0.json", + ReferenceNumber: 469, + Name: "Non-Commercial Government Licence", + LicenseID: "NCGL-UK-2.0", + SeeAlso: []string{ + "http://www.nationalarchives.gov.uk/doc/non-commercial-government-licence/version/2/", + }, + IsOsiApproved: false, + }, + "ntp-0": { + Reference: "https://spdx.org/licenses/NTP-0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/NTP-0.json", + ReferenceNumber: 470, + Name: "NTP No Attribution", + LicenseID: "NTP-0", + SeeAlso: []string{ + "https://github.com/tytso/e2fsprogs/blob/master/lib/et/et_name.c", + }, + IsOsiApproved: false, + }, + "sgi-b-1.0": { + Reference: "https://spdx.org/licenses/SGI-B-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SGI-B-1.0.json", + ReferenceNumber: 471, + Name: "SGI Free Software License B v1.0", + LicenseID: "SGI-B-1.0", + SeeAlso: []string{ + "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html", + }, + IsOsiApproved: false, + }, + "bsd-3-clause-hp": { + Reference: "https://spdx.org/licenses/BSD-3-Clause-HP.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-3-Clause-HP.json", + ReferenceNumber: 472, + Name: "Hewlett-Packard BSD variant license", + LicenseID: "BSD-3-Clause-HP", + SeeAlso: []string{ + "https://github.com/zdohnal/hplip/blob/master/COPYING#L939", + }, + IsOsiApproved: false, + }, + "cnri-python-gpl-compatible": { + Reference: "https://spdx.org/licenses/CNRI-Python-GPL-Compatible.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CNRI-Python-GPL-Compatible.json", + ReferenceNumber: 473, + Name: "CNRI Python Open Source GPL Compatible License Agreement", + LicenseID: "CNRI-Python-GPL-Compatible", + SeeAlso: []string{ + "http://www.python.org/download/releases/1.6.1/download_win/", + }, + IsOsiApproved: false, + }, + "cdla-permissive-1.0": { + Reference: "https://spdx.org/licenses/CDLA-Permissive-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CDLA-Permissive-1.0.json", + ReferenceNumber: 474, + Name: "Community Data License Agreement Permissive 1.0", + LicenseID: "CDLA-Permissive-1.0", + SeeAlso: []string{ + "https://cdla.io/permissive-1-0", + }, + IsOsiApproved: false, + }, + "cc-by-nc-sa-3.0-igo": { + Reference: "https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO.json", + ReferenceNumber: 475, + Name: "Creative Commons Attribution Non Commercial Share Alike 3.0 IGO", + LicenseID: "CC-BY-NC-SA-3.0-IGO", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode", + }, + IsOsiApproved: false, + }, + "gpl-2.0-with-gcc-exception": { + Reference: "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.json", + ReferenceNumber: 476, + Name: "GNU General Public License v2.0 w/GCC Runtime Library exception", + LicenseID: "GPL-2.0-with-GCC-exception", + SeeAlso: []string{ + "https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/libgcc1.c;h=762f5143fc6eed57b6797c82710f3538aa52b40b;hb=cb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10", + }, + IsOsiApproved: false, + }, + "opl-1.0": { + Reference: "https://spdx.org/licenses/OPL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OPL-1.0.json", + ReferenceNumber: 477, + Name: "Open Public License v1.0", + LicenseID: "OPL-1.0", + SeeAlso: []string{ + "http://old.koalateam.com/jackaroo/OPL_1_0.TXT", + "https://fedoraproject.org/wiki/Licensing/Open_Public_License", + }, + IsOsiApproved: false, + }, + "frameworx-1.0": { + Reference: "https://spdx.org/licenses/Frameworx-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Frameworx-1.0.json", + ReferenceNumber: 478, + Name: "Frameworx Open License 1.0", + LicenseID: "Frameworx-1.0", + SeeAlso: []string{ + "https://opensource.org/licenses/Frameworx-1.0", + }, + IsOsiApproved: true, + }, + "zed": { + Reference: "https://spdx.org/licenses/Zed.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Zed.json", + ReferenceNumber: 479, + Name: "Zed License", + LicenseID: "Zed", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Zed", + }, + IsOsiApproved: false, + }, + "rhecos-1.1": { + Reference: "https://spdx.org/licenses/RHeCos-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/RHeCos-1.1.json", + ReferenceNumber: 480, + Name: "Red Hat eCos Public License v1.1", + LicenseID: "RHeCos-1.1", + SeeAlso: []string{ + "http://ecos.sourceware.org/old-license.html", + }, + IsOsiApproved: false, + }, + "boehm-gc": { + Reference: "https://spdx.org/licenses/Boehm-GC.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Boehm-GC.json", + ReferenceNumber: 481, + Name: "Boehm-Demers-Weiser GC License", + LicenseID: "Boehm-GC", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing:MIT#Another_Minimal_variant_(found_in_libatomic_ops)", + "https://github.com/uim/libgcroots/blob/master/COPYING", + "https://github.com/ivmai/libatomic_ops/blob/master/LICENSE", + }, + IsOsiApproved: false, + }, + "martin-birgmeier": { + Reference: "https://spdx.org/licenses/Martin-Birgmeier.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Martin-Birgmeier.json", + ReferenceNumber: 482, + Name: "Martin Birgmeier License", + LicenseID: "Martin-Birgmeier", + SeeAlso: []string{ + "https://github.com/Perl/perl5/blob/blead/util.c#L6136", + }, + IsOsiApproved: false, + }, + "cc-by-sa-3.0-at": { + Reference: "https://spdx.org/licenses/CC-BY-SA-3.0-AT.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-SA-3.0-AT.json", + ReferenceNumber: 483, + Name: "Creative Commons Attribution Share Alike 3.0 Austria", + LicenseID: "CC-BY-SA-3.0-AT", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-sa/3.0/at/legalcode", + }, + IsOsiApproved: false, + }, + "lgpl-2.1-or-later": { + Reference: "https://spdx.org/licenses/LGPL-2.1-or-later.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LGPL-2.1-or-later.json", + ReferenceNumber: 484, + Name: "GNU Lesser General Public License v2.1 or later", + LicenseID: "LGPL-2.1-or-later", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", + "https://opensource.org/licenses/LGPL-2.1", + }, + IsOsiApproved: true, + }, + "w3c-20150513": { + Reference: "https://spdx.org/licenses/W3C-20150513.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/W3C-20150513.json", + ReferenceNumber: 485, + Name: "W3C Software Notice and Document License (2015-05-13)", + LicenseID: "W3C-20150513", + SeeAlso: []string{ + "https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document", + }, + IsOsiApproved: false, + }, + "kastrup": { + Reference: "https://spdx.org/licenses/Kastrup.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Kastrup.json", + ReferenceNumber: 486, + Name: "Kastrup License", + LicenseID: "Kastrup", + SeeAlso: []string{ + "https://ctan.math.utah.edu/ctan/tex-archive/macros/generic/kastrup/binhex.dtx", + }, + IsOsiApproved: false, + }, + "mpl-2.0": { + Reference: "https://spdx.org/licenses/MPL-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MPL-2.0.json", + ReferenceNumber: 487, + Name: "Mozilla Public License 2.0", + LicenseID: "MPL-2.0", + SeeAlso: []string{ + "https://www.mozilla.org/MPL/2.0/", + "https://opensource.org/licenses/MPL-2.0", + }, + IsOsiApproved: true, + }, + "cpol-1.02": { + Reference: "https://spdx.org/licenses/CPOL-1.02.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CPOL-1.02.json", + ReferenceNumber: 488, + Name: "Code Project Open License 1.02", + LicenseID: "CPOL-1.02", + SeeAlso: []string{ + "http://www.codeproject.com/info/cpol10.aspx", + }, + IsOsiApproved: false, + }, + "vim": { + Reference: "https://spdx.org/licenses/Vim.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Vim.json", + ReferenceNumber: 489, + Name: "Vim License", + LicenseID: "Vim", + SeeAlso: []string{ + "http://vimdoc.sourceforge.net/htmldoc/uganda.html", + }, + IsOsiApproved: false, + }, + "zlib-acknowledgement": { + Reference: "https://spdx.org/licenses/zlib-acknowledgement.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/zlib-acknowledgement.json", + ReferenceNumber: 490, + Name: "zlib/libpng License with Acknowledgement", + LicenseID: "zlib-acknowledgement", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement", + }, + IsOsiApproved: false, + }, + "gpl-3.0-with-gcc-exception": { + Reference: "https://spdx.org/licenses/GPL-3.0-with-GCC-exception.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/GPL-3.0-with-GCC-exception.json", + ReferenceNumber: 491, + Name: "GNU General Public License v3.0 w/GCC Runtime Library exception", + LicenseID: "GPL-3.0-with-GCC-exception", + SeeAlso: []string{ + "https://www.gnu.org/licenses/gcc-exception-3.1.html", + }, + IsOsiApproved: true, + }, + "mit-open-group": { + Reference: "https://spdx.org/licenses/MIT-open-group.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MIT-open-group.json", + ReferenceNumber: 492, + Name: "MIT Open Group variant", + LicenseID: "MIT-open-group", + SeeAlso: []string{ + "https://gitlab.freedesktop.org/xorg/app/iceauth/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/app/xvinfo/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/app/xsetroot/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/app/xauth/-/blob/master/COPYING", + }, + IsOsiApproved: false, + }, + "imatix": { + Reference: "https://spdx.org/licenses/iMatix.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/iMatix.json", + ReferenceNumber: 493, + Name: "iMatix Standard Function Library Agreement", + LicenseID: "iMatix", + SeeAlso: []string{ + "http://legacy.imatix.com/html/sfl/sfl4.htm#license", + }, + IsOsiApproved: false, + }, + "mit-festival": { + Reference: "https://spdx.org/licenses/MIT-Festival.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MIT-Festival.json", + ReferenceNumber: 494, + Name: "MIT Festival Variant", + LicenseID: "MIT-Festival", + SeeAlso: []string{ + "https://github.com/festvox/flite/blob/master/COPYING", + "https://github.com/festvox/speech_tools/blob/master/COPYING", + }, + IsOsiApproved: false, + }, + "urt-rle": { + Reference: "https://spdx.org/licenses/URT-RLE.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/URT-RLE.json", + ReferenceNumber: 495, + Name: "Utah Raster Toolkit Run Length Encoded License", + LicenseID: "URT-RLE", + SeeAlso: []string{ + "https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/converter/other/pnmtorle.c", + "https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/converter/other/rletopnm.c", + }, + IsOsiApproved: false, + }, + "c-uda-1.0": { + Reference: "https://spdx.org/licenses/C-UDA-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/C-UDA-1.0.json", + ReferenceNumber: 496, + Name: "Computational Use of Data Agreement v1.0", + LicenseID: "C-UDA-1.0", + SeeAlso: []string{ + "https://github.com/microsoft/Computational-Use-of-Data-Agreement/blob/master/C-UDA-1.0.md", + "https://cdla.dev/computational-use-of-data-agreement-v1-0/", + }, + IsOsiApproved: false, + }, + "zpl-1.1": { + Reference: "https://spdx.org/licenses/ZPL-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/ZPL-1.1.json", + ReferenceNumber: 497, + Name: "Zope Public License 1.1", + LicenseID: "ZPL-1.1", + SeeAlso: []string{ + "http://old.zope.org/Resources/License/ZPL-1.1", + }, + IsOsiApproved: false, + }, + "crystalstacker": { + Reference: "https://spdx.org/licenses/CrystalStacker.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CrystalStacker.json", + ReferenceNumber: 498, + Name: "CrystalStacker License", + LicenseID: "CrystalStacker", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker", + }, + IsOsiApproved: false, + }, + "cc-by-nc-nd-2.5": { + Reference: "https://spdx.org/licenses/CC-BY-NC-ND-2.5.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-ND-2.5.json", + ReferenceNumber: 499, + Name: "Creative Commons Attribution Non Commercial No Derivatives 2.5 Generic", + LicenseID: "CC-BY-NC-ND-2.5", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode", + }, + IsOsiApproved: false, + }, + "cc-by-nc-1.0": { + Reference: "https://spdx.org/licenses/CC-BY-NC-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-NC-1.0.json", + ReferenceNumber: 500, + Name: "Creative Commons Attribution Non Commercial 1.0 Generic", + LicenseID: "CC-BY-NC-1.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nc/1.0/legalcode", + }, + IsOsiApproved: false, + }, + "gfdl-1.2-invariants-only": { + Reference: "https://spdx.org/licenses/GFDL-1.2-invariants-only.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GFDL-1.2-invariants-only.json", + ReferenceNumber: 501, + Name: "GNU Free Documentation License v1.2 only - invariants", + LicenseID: "GFDL-1.2-invariants-only", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", + }, + IsOsiApproved: false, + }, + "hpnd-sell-variant-mit-disclaimer": { + Reference: "https://spdx.org/licenses/HPND-sell-variant-MIT-disclaimer.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/HPND-sell-variant-MIT-disclaimer.json", + ReferenceNumber: 502, + Name: "HPND sell variant with MIT disclaimer", + LicenseID: "HPND-sell-variant-MIT-disclaimer", + SeeAlso: []string{ + "https://github.com/sigmavirus24/x11-ssh-askpass/blob/master/README", + }, + IsOsiApproved: false, + }, + "ms-pl": { + Reference: "https://spdx.org/licenses/MS-PL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/MS-PL.json", + ReferenceNumber: 503, + Name: "Microsoft Public License", + LicenseID: "MS-PL", + SeeAlso: []string{ + "http://www.microsoft.com/opensource/licenses.mspx", + "https://opensource.org/licenses/MS-PL", + }, + IsOsiApproved: true, + }, + "hpnd-pbmplus": { + Reference: "https://spdx.org/licenses/HPND-Pbmplus.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/HPND-Pbmplus.json", + ReferenceNumber: 504, + Name: "Historical Permission Notice and Disclaimer - Pbmplus variant", + LicenseID: "HPND-Pbmplus", + SeeAlso: []string{ + "https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/netpbm.c#l8", + }, + IsOsiApproved: false, + }, + "ofl-1.1": { + Reference: "https://spdx.org/licenses/OFL-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OFL-1.1.json", + ReferenceNumber: 505, + Name: "SIL Open Font License 1.1", + LicenseID: "OFL-1.1", + SeeAlso: []string{ + "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web", + "https://opensource.org/licenses/OFL-1.1", + }, + IsOsiApproved: true, + }, + "leptonica": { + Reference: "https://spdx.org/licenses/Leptonica.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Leptonica.json", + ReferenceNumber: 506, + Name: "Leptonica License", + LicenseID: "Leptonica", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Leptonica", + }, + IsOsiApproved: false, + }, + "sunpro": { + Reference: "https://spdx.org/licenses/SunPro.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SunPro.json", + ReferenceNumber: 507, + Name: "SunPro License", + LicenseID: "SunPro", + SeeAlso: []string{ + "https://github.com/freebsd/freebsd-src/blob/main/lib/msun/src/e_acosh.c", + "https://github.com/freebsd/freebsd-src/blob/main/lib/msun/src/e_lgammal.c", + }, + IsOsiApproved: false, + }, + "wtfpl": { + Reference: "https://spdx.org/licenses/WTFPL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/WTFPL.json", + ReferenceNumber: 508, + Name: "Do What The F*ck You Want To Public License", + LicenseID: "WTFPL", + SeeAlso: []string{ + "http://www.wtfpl.net/about/", + "http://sam.zoy.org/wtfpl/COPYING", + }, + IsOsiApproved: false, + }, + "cddl-1.0": { + Reference: "https://spdx.org/licenses/CDDL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CDDL-1.0.json", + ReferenceNumber: 509, + Name: "Common Development and Distribution License 1.0", + LicenseID: "CDDL-1.0", + SeeAlso: []string{ + "https://opensource.org/licenses/cddl1", + }, + IsOsiApproved: true, + }, + "offis": { + Reference: "https://spdx.org/licenses/OFFIS.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OFFIS.json", + ReferenceNumber: 510, + Name: "OFFIS License", + LicenseID: "OFFIS", + SeeAlso: []string{ + "https://sourceforge.net/p/xmedcon/code/ci/master/tree/libs/dicom/README", + }, + IsOsiApproved: false, + }, + "latex2e": { + Reference: "https://spdx.org/licenses/Latex2e.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Latex2e.json", + ReferenceNumber: 511, + Name: "Latex2e License", + LicenseID: "Latex2e", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Latex2e", + }, + IsOsiApproved: false, + }, + "gfdl-1.3-no-invariants-or-later": { + Reference: "https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later.json", + ReferenceNumber: 512, + Name: "GNU Free Documentation License v1.3 or later - no invariants", + LicenseID: "GFDL-1.3-no-invariants-or-later", + SeeAlso: []string{ + "https://www.gnu.org/licenses/fdl-1.3.txt", + }, + IsOsiApproved: false, + }, + "xpp": { + Reference: "https://spdx.org/licenses/xpp.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/xpp.json", + ReferenceNumber: 513, + Name: "XPP License", + LicenseID: "xpp", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/xpp", + }, + IsOsiApproved: false, + }, + "lppl-1.3c": { + Reference: "https://spdx.org/licenses/LPPL-1.3c.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LPPL-1.3c.json", + ReferenceNumber: 514, + Name: "LaTeX Project Public License v1.3c", + LicenseID: "LPPL-1.3c", + SeeAlso: []string{ + "http://www.latex-project.org/lppl/lppl-1-3c.txt", + "https://opensource.org/licenses/LPPL-1.3c", + }, + IsOsiApproved: true, + }, + "xlock": { + Reference: "https://spdx.org/licenses/xlock.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/xlock.json", + ReferenceNumber: 515, + Name: "xlock License", + LicenseID: "xlock", + SeeAlso: []string{ + "https://fossies.org/linux/tiff/contrib/ras/ras2tif.c", + }, + IsOsiApproved: false, + }, + "dl-de-by-2.0": { + Reference: "https://spdx.org/licenses/DL-DE-BY-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/DL-DE-BY-2.0.json", + ReferenceNumber: 516, + Name: "Data licence Germany – attribution – version 2.0", + LicenseID: "DL-DE-BY-2.0", + SeeAlso: []string{ + "https://www.govdata.de/dl-de/by-2-0", + }, + IsOsiApproved: false, + }, + "vostrom": { + Reference: "https://spdx.org/licenses/VOSTROM.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/VOSTROM.json", + ReferenceNumber: 517, + Name: "VOSTROM Public License for Open Source", + LicenseID: "VOSTROM", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/VOSTROM", + }, + IsOsiApproved: false, + }, + "apsl-1.1": { + Reference: "https://spdx.org/licenses/APSL-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/APSL-1.1.json", + ReferenceNumber: 518, + Name: "Apple Public Source License 1.1", + LicenseID: "APSL-1.1", + SeeAlso: []string{ + "http://www.opensource.apple.com/source/IOSerialFamily/IOSerialFamily-7/APPLE_LICENSE", + }, + IsOsiApproved: true, + }, + "ecl-2.0": { + Reference: "https://spdx.org/licenses/ECL-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/ECL-2.0.json", + ReferenceNumber: 519, + Name: "Educational Community License v2.0", + LicenseID: "ECL-2.0", + SeeAlso: []string{ + "https://opensource.org/licenses/ECL-2.0", + }, + IsOsiApproved: true, + }, + "bzip2-1.0.6": { + Reference: "https://spdx.org/licenses/bzip2-1.0.6.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/bzip2-1.0.6.json", + ReferenceNumber: 520, + Name: "bzip2 and libbzip2 License v1.0.6", + LicenseID: "bzip2-1.0.6", + SeeAlso: []string{ + "https://sourceware.org/git/?p=bzip2.git;a=blob;f=LICENSE;hb=bzip2-1.0.6", + "http://bzip.org/1.0.5/bzip2-manual-1.0.5.html", + }, + IsOsiApproved: false, + }, + "xdebug-1.03": { + Reference: "https://spdx.org/licenses/Xdebug-1.03.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Xdebug-1.03.json", + ReferenceNumber: 521, + Name: "Xdebug License v 1.03", + LicenseID: "Xdebug-1.03", + SeeAlso: []string{ + "https://github.com/xdebug/xdebug/blob/master/LICENSE", + }, + IsOsiApproved: false, + }, + "php-3.0": { + Reference: "https://spdx.org/licenses/PHP-3.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/PHP-3.0.json", + ReferenceNumber: 522, + Name: "PHP License v3.0", + LicenseID: "PHP-3.0", + SeeAlso: []string{ + "http://www.php.net/license/3_0.txt", + "https://opensource.org/licenses/PHP-3.0", + }, + IsOsiApproved: true, + }, + "tcl": { + Reference: "https://spdx.org/licenses/TCL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/TCL.json", + ReferenceNumber: 523, + Name: "TCL/TK License", + LicenseID: "TCL", + SeeAlso: []string{ + "http://www.tcl.tk/software/tcltk/license.html", + "https://fedoraproject.org/wiki/Licensing/TCL", + }, + IsOsiApproved: false, + }, + "sgi-b-1.1": { + Reference: "https://spdx.org/licenses/SGI-B-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SGI-B-1.1.json", + ReferenceNumber: 524, + Name: "SGI Free Software License B v1.1", + LicenseID: "SGI-B-1.1", + SeeAlso: []string{ + "http://oss.sgi.com/projects/FreeB/", + }, + IsOsiApproved: false, + }, + "python-2.0": { + Reference: "https://spdx.org/licenses/Python-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Python-2.0.json", + ReferenceNumber: 525, + Name: "Python License 2.0", + LicenseID: "Python-2.0", + SeeAlso: []string{ + "https://opensource.org/licenses/Python-2.0", + }, + IsOsiApproved: true, + }, + "apsl-2.0": { + Reference: "https://spdx.org/licenses/APSL-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/APSL-2.0.json", + ReferenceNumber: 526, + Name: "Apple Public Source License 2.0", + LicenseID: "APSL-2.0", + SeeAlso: []string{ + "http://www.opensource.apple.com/license/apsl/", + }, + IsOsiApproved: true, + }, + "wsuipa": { + Reference: "https://spdx.org/licenses/Wsuipa.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Wsuipa.json", + ReferenceNumber: 527, + Name: "Wsuipa License", + LicenseID: "Wsuipa", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Wsuipa", + }, + IsOsiApproved: false, + }, + "apache-1.0": { + Reference: "https://spdx.org/licenses/Apache-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Apache-1.0.json", + ReferenceNumber: 528, + Name: "Apache License 1.0", + LicenseID: "Apache-1.0", + SeeAlso: []string{ + "http://www.apache.org/licenses/LICENSE-1.0", + }, + IsOsiApproved: false, + }, + "bsl-1.0": { + Reference: "https://spdx.org/licenses/BSL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSL-1.0.json", + ReferenceNumber: 529, + Name: "Boost Software License 1.0", + LicenseID: "BSL-1.0", + SeeAlso: []string{ + "http://www.boost.org/LICENSE_1_0.txt", + "https://opensource.org/licenses/BSL-1.0", + }, + IsOsiApproved: true, + }, + "antlr-pd": { + Reference: "https://spdx.org/licenses/ANTLR-PD.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/ANTLR-PD.json", + ReferenceNumber: 530, + Name: "ANTLR Software Rights Notice", + LicenseID: "ANTLR-PD", + SeeAlso: []string{ + "http://www.antlr2.org/license.html", + }, + IsOsiApproved: false, + }, + "lal-1.3": { + Reference: "https://spdx.org/licenses/LAL-1.3.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LAL-1.3.json", + ReferenceNumber: 531, + Name: "Licence Art Libre 1.3", + LicenseID: "LAL-1.3", + SeeAlso: []string{ + "https://artlibre.org/", + }, + IsOsiApproved: false, + }, + "hpnd-export-us-modify": { + Reference: "https://spdx.org/licenses/HPND-export-US-modify.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/HPND-export-US-modify.json", + ReferenceNumber: 532, + Name: "HPND with US Government export control warning and modification rqmt", + LicenseID: "HPND-export-US-modify", + SeeAlso: []string{ + "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L1157-L1182", + "https://github.com/pythongssapi/k5test/blob/v0.10.3/K5TEST-LICENSE.txt", + }, + IsOsiApproved: false, + }, + "arphic-1999": { + Reference: "https://spdx.org/licenses/Arphic-1999.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Arphic-1999.json", + ReferenceNumber: 533, + Name: "Arphic Public License", + LicenseID: "Arphic-1999", + SeeAlso: []string{ + "http://ftp.gnu.org/gnu/non-gnu/chinese-fonts-truetype/LICENSE", + }, + IsOsiApproved: false, + }, + "dotseqn": { + Reference: "https://spdx.org/licenses/Dotseqn.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Dotseqn.json", + ReferenceNumber: 534, + Name: "Dotseqn License", + LicenseID: "Dotseqn", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Dotseqn", + }, + IsOsiApproved: false, + }, + "info-zip": { + Reference: "https://spdx.org/licenses/Info-ZIP.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Info-ZIP.json", + ReferenceNumber: 535, + Name: "Info-ZIP License", + LicenseID: "Info-ZIP", + SeeAlso: []string{ + "http://www.info-zip.org/license.html", + }, + IsOsiApproved: false, + }, + "psutils": { + Reference: "https://spdx.org/licenses/psutils.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/psutils.json", + ReferenceNumber: 536, + Name: "psutils License", + LicenseID: "psutils", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/psutils", + }, + IsOsiApproved: false, + }, + "nist-pd": { + Reference: "https://spdx.org/licenses/NIST-PD.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/NIST-PD.json", + ReferenceNumber: 537, + Name: "NIST Public Domain Notice", + LicenseID: "NIST-PD", + SeeAlso: []string{ + "https://github.com/tcheneau/simpleRPL/blob/e645e69e38dd4e3ccfeceb2db8cba05b7c2e0cd3/LICENSE.txt", + "https://github.com/tcheneau/Routing/blob/f09f46fcfe636107f22f2c98348188a65a135d98/README.md", + }, + IsOsiApproved: false, + }, + "gpl-2.0-or-later": { + Reference: "https://spdx.org/licenses/GPL-2.0-or-later.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GPL-2.0-or-later.json", + ReferenceNumber: 538, + Name: "GNU General Public License v2.0 or later", + LicenseID: "GPL-2.0-or-later", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "https://opensource.org/licenses/GPL-2.0", + }, + IsOsiApproved: true, + }, + "bsd-4.3reno": { + Reference: "https://spdx.org/licenses/BSD-4.3RENO.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-4.3RENO.json", + ReferenceNumber: 539, + Name: "BSD 4.3 RENO License", + LicenseID: "BSD-4.3RENO", + SeeAlso: []string{ + "https://sourceware.org/git/?p=binutils-gdb.git;a=blob;f=libiberty/strcasecmp.c;h=131d81c2ce7881fa48c363dc5bf5fb302c61ce0b;hb=HEAD", + "https://git.openldap.org/openldap/openldap/-/blob/master/COPYRIGHT#L55-63", + }, + IsOsiApproved: false, + }, + "hpnd-sell-variant": { + Reference: "https://spdx.org/licenses/HPND-sell-variant.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/HPND-sell-variant.json", + ReferenceNumber: 540, + Name: "Historical Permission Notice and Disclaimer - sell variant", + LicenseID: "HPND-sell-variant", + SeeAlso: []string{ + "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/net/sunrpc/auth_gss/gss_generic_token.c?h=v4.19", + }, + IsOsiApproved: false, + }, + "cnri-jython": { + Reference: "https://spdx.org/licenses/CNRI-Jython.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CNRI-Jython.json", + ReferenceNumber: 541, + Name: "CNRI Jython License", + LicenseID: "CNRI-Jython", + SeeAlso: []string{ + "http://www.jython.org/license.html", + }, + IsOsiApproved: false, + }, + "coil-1.0": { + Reference: "https://spdx.org/licenses/COIL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/COIL-1.0.json", + ReferenceNumber: 542, + Name: "Copyfree Open Innovation License", + LicenseID: "COIL-1.0", + SeeAlso: []string{ + "https://coil.apotheon.org/plaintext/01.0.txt", + }, + IsOsiApproved: false, + }, + "fsfap": { + Reference: "https://spdx.org/licenses/FSFAP.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/FSFAP.json", + ReferenceNumber: 543, + Name: "FSF All Permissive License", + LicenseID: "FSFAP", + SeeAlso: []string{ + "https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html", + }, + IsOsiApproved: false, + }, + "lpl-1.0": { + Reference: "https://spdx.org/licenses/LPL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LPL-1.0.json", + ReferenceNumber: 544, + Name: "Lucent Public License Version 1.0", + LicenseID: "LPL-1.0", + SeeAlso: []string{ + "https://opensource.org/licenses/LPL-1.0", + }, + IsOsiApproved: true, + }, + "olfl-1.3": { + Reference: "https://spdx.org/licenses/OLFL-1.3.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OLFL-1.3.json", + ReferenceNumber: 545, + Name: "Open Logistics Foundation License Version 1.3", + LicenseID: "OLFL-1.3", + SeeAlso: []string{ + "https://openlogisticsfoundation.org/licenses/", + "https://opensource.org/license/olfl-1-3/", + }, + IsOsiApproved: true, + }, + "adobe-glyph": { + Reference: "https://spdx.org/licenses/Adobe-Glyph.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Adobe-Glyph.json", + ReferenceNumber: 546, + Name: "Adobe Glyph List License", + LicenseID: "Adobe-Glyph", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", + }, + IsOsiApproved: false, + }, + "nist-software": { + Reference: "https://spdx.org/licenses/NIST-Software.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/NIST-Software.json", + ReferenceNumber: 547, + Name: "NIST Software License", + LicenseID: "NIST-Software", + SeeAlso: []string{ + "https://github.com/open-quantum-safe/liboqs/blob/40b01fdbb270f8614fde30e65d30e9da18c02393/src/common/rand/rand_nist.c#L1-L15", + }, + IsOsiApproved: false, + }, + "ttyp0": { + Reference: "https://spdx.org/licenses/TTYP0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/TTYP0.json", + ReferenceNumber: 548, + Name: "TTYP0 License", + LicenseID: "TTYP0", + SeeAlso: []string{ + "https://people.mpi-inf.mpg.de/~uwe/misc/uw-ttyp0/", + }, + IsOsiApproved: false, + }, + "lgpllr": { + Reference: "https://spdx.org/licenses/LGPLLR.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LGPLLR.json", + ReferenceNumber: 549, + Name: "Lesser General Public License For Linguistic Resources", + LicenseID: "LGPLLR", + SeeAlso: []string{ + "http://www-igm.univ-mlv.fr/~unitex/lgpllr.html", + }, + IsOsiApproved: false, + }, + "cc-by-nd-1.0": { + Reference: "https://spdx.org/licenses/CC-BY-ND-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-ND-1.0.json", + ReferenceNumber: 550, + Name: "Creative Commons Attribution No Derivatives 1.0 Generic", + LicenseID: "CC-BY-ND-1.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-nd/1.0/legalcode", + }, + IsOsiApproved: false, + }, + "elastic-2.0": { + Reference: "https://spdx.org/licenses/Elastic-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Elastic-2.0.json", + ReferenceNumber: 551, + Name: "Elastic License 2.0", + LicenseID: "Elastic-2.0", + SeeAlso: []string{ + "https://www.elastic.co/licensing/elastic-license", + "https://github.com/elastic/elasticsearch/blob/master/licenses/ELASTIC-LICENSE-2.0.txt", + }, + IsOsiApproved: false, + }, + "fbm": { + Reference: "https://spdx.org/licenses/FBM.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/FBM.json", + ReferenceNumber: 552, + Name: "Fuzzy Bitmap License", + LicenseID: "FBM", + SeeAlso: []string{ + "https://github.com/SWI-Prolog/packages-xpce/blob/161a40cd82004f731ba48024f9d30af388a7edf5/src/img/gifwrite.c#L21-L26", + }, + IsOsiApproved: false, + }, + "lppl-1.3a": { + Reference: "https://spdx.org/licenses/LPPL-1.3a.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/LPPL-1.3a.json", + ReferenceNumber: 553, + Name: "LaTeX Project Public License v1.3a", + LicenseID: "LPPL-1.3a", + SeeAlso: []string{ + "http://www.latex-project.org/lppl/lppl-1-3a.txt", + }, + IsOsiApproved: false, + }, + "agpl-3.0-or-later": { + Reference: "https://spdx.org/licenses/AGPL-3.0-or-later.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/AGPL-3.0-or-later.json", + ReferenceNumber: 554, + Name: "GNU Affero General Public License v3.0 or later", + LicenseID: "AGPL-3.0-or-later", + SeeAlso: []string{ + "https://www.gnu.org/licenses/agpl.txt", + "https://opensource.org/licenses/AGPL-3.0", + }, + IsOsiApproved: true, + }, + "barr": { + Reference: "https://spdx.org/licenses/Barr.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Barr.json", + ReferenceNumber: 555, + Name: "Barr License", + LicenseID: "Barr", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Barr", + }, + IsOsiApproved: false, + }, + "cdla-permissive-2.0": { + Reference: "https://spdx.org/licenses/CDLA-Permissive-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CDLA-Permissive-2.0.json", + ReferenceNumber: 556, + Name: "Community Data License Agreement Permissive 2.0", + LicenseID: "CDLA-Permissive-2.0", + SeeAlso: []string{ + "https://cdla.dev/permissive-2-0", + }, + IsOsiApproved: false, + }, + "gpl-3.0-or-later": { + Reference: "https://spdx.org/licenses/GPL-3.0-or-later.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/GPL-3.0-or-later.json", + ReferenceNumber: 557, + Name: "GNU General Public License v3.0 or later", + LicenseID: "GPL-3.0-or-later", + SeeAlso: []string{ + "https://www.gnu.org/licenses/gpl-3.0-standalone.html", + "https://opensource.org/licenses/GPL-3.0", + }, + IsOsiApproved: true, + }, + "netcdf": { + Reference: "https://spdx.org/licenses/NetCDF.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/NetCDF.json", + ReferenceNumber: 558, + Name: "NetCDF license", + LicenseID: "NetCDF", + SeeAlso: []string{ + "http://www.unidata.ucar.edu/software/netcdf/copyright.html", + }, + IsOsiApproved: false, + }, + "bahyph": { + Reference: "https://spdx.org/licenses/Bahyph.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Bahyph.json", + ReferenceNumber: 559, + Name: "Bahyph License", + LicenseID: "Bahyph", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Bahyph", + }, + IsOsiApproved: false, + }, + "cc-by-3.0-us": { + Reference: "https://spdx.org/licenses/CC-BY-3.0-US.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-3.0-US.json", + ReferenceNumber: 560, + Name: "Creative Commons Attribution 3.0 United States", + LicenseID: "CC-BY-3.0-US", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by/3.0/us/legalcode", + }, + IsOsiApproved: false, + }, + "dtoa": { + Reference: "https://spdx.org/licenses/dtoa.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/dtoa.json", + ReferenceNumber: 561, + Name: "David M. Gay dtoa License", + LicenseID: "dtoa", + SeeAlso: []string{ + "https://github.com/SWI-Prolog/swipl-devel/blob/master/src/os/dtoa.c", + }, + IsOsiApproved: false, + }, + "cc-by-2.5": { + Reference: "https://spdx.org/licenses/CC-BY-2.5.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-2.5.json", + ReferenceNumber: 562, + Name: "Creative Commons Attribution 2.5 Generic", + LicenseID: "CC-BY-2.5", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by/2.5/legalcode", + }, + IsOsiApproved: false, + }, + "condor-1.1": { + Reference: "https://spdx.org/licenses/Condor-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Condor-1.1.json", + ReferenceNumber: 563, + Name: "Condor Public License v1.1", + LicenseID: "Condor-1.1", + SeeAlso: []string{ + "http://research.cs.wisc.edu/condor/license.html#condor", + "http://web.archive.org/web/20111123062036/http://research.cs.wisc.edu/condor/license.html#condor", + }, + IsOsiApproved: false, + }, + "check-cvs": { + Reference: "https://spdx.org/licenses/check-cvs.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/check-cvs.json", + ReferenceNumber: 564, + Name: "check-cvs License", + LicenseID: "check-cvs", + SeeAlso: []string{ + "http://cvs.savannah.gnu.org/viewvc/cvs/ccvs/contrib/check_cvs.in?revision=1.1.4.3&view=markup&pathrev=cvs1-11-23#l2", + }, + IsOsiApproved: false, + }, + "mpi-permissive": { + Reference: "https://spdx.org/licenses/mpi-permissive.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/mpi-permissive.json", + ReferenceNumber: 565, + Name: "mpi Permissive License", + LicenseID: "mpi-permissive", + SeeAlso: []string{ + "https://sources.debian.org/src/openmpi/4.1.0-10/ompi/debuggers/msgq_interface.h/?hl=19#L19", + }, + IsOsiApproved: false, + }, + "rscpl": { + Reference: "https://spdx.org/licenses/RSCPL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/RSCPL.json", + ReferenceNumber: 566, + Name: "Ricoh Source Code Public License", + LicenseID: "RSCPL", + SeeAlso: []string{ + "http://wayback.archive.org/web/20060715140826/http://www.risource.org/RPL/RPL-1.0A.shtml", + "https://opensource.org/licenses/RSCPL", + }, + IsOsiApproved: true, + }, + "latex2e-translated-notice": { + Reference: "https://spdx.org/licenses/Latex2e-translated-notice.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Latex2e-translated-notice.json", + ReferenceNumber: 567, + Name: "Latex2e with translated notice permission", + LicenseID: "Latex2e-translated-notice", + SeeAlso: []string{ + "https://git.savannah.gnu.org/cgit/indent.git/tree/doc/indent.texi?id=a74c6b4ee49397cf330b333da1042bffa60ed14f#n74", + }, + IsOsiApproved: false, + }, + "tu-berlin-1.0": { + Reference: "https://spdx.org/licenses/TU-Berlin-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/TU-Berlin-1.0.json", + ReferenceNumber: 568, + Name: "Technische Universitaet Berlin License 1.0", + LicenseID: "TU-Berlin-1.0", + SeeAlso: []string{ + "https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT", + }, + IsOsiApproved: false, + }, + "smlnj": { + Reference: "https://spdx.org/licenses/SMLNJ.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SMLNJ.json", + ReferenceNumber: 569, + Name: "Standard ML of New Jersey License", + LicenseID: "SMLNJ", + SeeAlso: []string{ + "https://www.smlnj.org/license.html", + }, + IsOsiApproved: false, + }, + "bsd-2-clause-freebsd": { + Reference: "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.json", + ReferenceNumber: 570, + Name: "BSD 2-Clause FreeBSD License", + LicenseID: "BSD-2-Clause-FreeBSD", + SeeAlso: []string{ + "http://www.freebsd.org/copyright/freebsd-license.html", + }, + IsOsiApproved: false, + }, + "tpdl": { + Reference: "https://spdx.org/licenses/TPDL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/TPDL.json", + ReferenceNumber: 571, + Name: "Time::ParseDate License", + LicenseID: "TPDL", + SeeAlso: []string{ + "https://metacpan.org/pod/Time::ParseDate#LICENSE", + }, + IsOsiApproved: false, + }, + "multics": { + Reference: "https://spdx.org/licenses/Multics.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Multics.json", + ReferenceNumber: 572, + Name: "Multics License", + LicenseID: "Multics", + SeeAlso: []string{ + "https://opensource.org/licenses/Multics", + }, + IsOsiApproved: true, + }, + "lgpl-3.0+": { + Reference: "https://spdx.org/licenses/LGPL-3.0+.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/LGPL-3.0+.json", + ReferenceNumber: 573, + Name: "GNU Lesser General Public License v3.0 or later", + LicenseID: "LGPL-3.0+", + SeeAlso: []string{ + "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", + "https://www.gnu.org/licenses/lgpl+gpl-3.0.txt", + "https://opensource.org/licenses/LGPL-3.0", + }, + IsOsiApproved: true, + }, + "gfdl-1.3": { + Reference: "https://spdx.org/licenses/GFDL-1.3.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/GFDL-1.3.json", + ReferenceNumber: 574, + Name: "GNU Free Documentation License v1.3", + LicenseID: "GFDL-1.3", + SeeAlso: []string{ + "https://www.gnu.org/licenses/fdl-1.3.txt", + }, + IsOsiApproved: false, + }, + "bsd-4-clause": { + Reference: "https://spdx.org/licenses/BSD-4-Clause.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-4-Clause.json", + ReferenceNumber: 575, + Name: "BSD 4-Clause \"Original\" or \"Old\" License", + LicenseID: "BSD-4-Clause", + SeeAlso: []string{ + "http://directory.fsf.org/wiki/License:BSD_4Clause", + }, + IsOsiApproved: false, + }, + "lgpl-2.0+": { + Reference: "https://spdx.org/licenses/LGPL-2.0+.html", + IsDeprecatedLicenseID: true, + DetailsURL: "https://spdx.org/licenses/LGPL-2.0+.json", + ReferenceNumber: 576, + Name: "GNU Library General Public License v2 or later", + LicenseID: "LGPL-2.0+", + SeeAlso: []string{ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html", + }, + IsOsiApproved: true, + }, + "bsd-2-clause-views": { + Reference: "https://spdx.org/licenses/BSD-2-Clause-Views.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-2-Clause-Views.json", + ReferenceNumber: 577, + Name: "BSD 2-Clause with views sentence", + LicenseID: "BSD-2-Clause-Views", + SeeAlso: []string{ + "http://www.freebsd.org/copyright/freebsd-license.html", + "https://people.freebsd.org/~ivoras/wine/patch-wine-nvidia.sh", + "https://github.com/protegeproject/protege/blob/master/license.txt", + }, + IsOsiApproved: false, + }, + "glide": { + Reference: "https://spdx.org/licenses/Glide.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Glide.json", + ReferenceNumber: 578, + Name: "3dfx Glide License", + LicenseID: "Glide", + SeeAlso: []string{ + "http://www.users.on.net/~triforce/glidexp/COPYING.txt", + }, + IsOsiApproved: false, + }, + "opubl-1.0": { + Reference: "https://spdx.org/licenses/OPUBL-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OPUBL-1.0.json", + ReferenceNumber: 579, + Name: "Open Publication License v1.0", + LicenseID: "OPUBL-1.0", + SeeAlso: []string{ + "http://opencontent.org/openpub/", + "https://www.debian.org/opl", + "https://www.ctan.org/license/opl", + }, + IsOsiApproved: false, + }, + "cc-by-sa-2.0": { + Reference: "https://spdx.org/licenses/CC-BY-SA-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/CC-BY-SA-2.0.json", + ReferenceNumber: 580, + Name: "Creative Commons Attribution Share Alike 2.0 Generic", + LicenseID: "CC-BY-SA-2.0", + SeeAlso: []string{ + "https://creativecommons.org/licenses/by-sa/2.0/legalcode", + }, + IsOsiApproved: false, + }, + "haskellreport": { + Reference: "https://spdx.org/licenses/HaskellReport.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/HaskellReport.json", + ReferenceNumber: 581, + Name: "Haskell Language Report License", + LicenseID: "HaskellReport", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License", + }, + IsOsiApproved: false, + }, + "jpl-image": { + Reference: "https://spdx.org/licenses/JPL-image.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/JPL-image.json", + ReferenceNumber: 582, + Name: "JPL Image Use Policy", + LicenseID: "JPL-image", + SeeAlso: []string{ + "https://www.jpl.nasa.gov/jpl-image-use-policy", + }, + IsOsiApproved: false, + }, + "ibm-pibs": { + Reference: "https://spdx.org/licenses/IBM-pibs.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/IBM-pibs.json", + ReferenceNumber: 583, + Name: "IBM PowerPC Initialization and Boot Software", + LicenseID: "IBM-pibs", + SeeAlso: []string{ + "http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d", + }, + IsOsiApproved: false, + }, + "ftl": { + Reference: "https://spdx.org/licenses/FTL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/FTL.json", + ReferenceNumber: 584, + Name: "Freetype Project License", + LicenseID: "FTL", + SeeAlso: []string{ + "http://freetype.fis.uniroma2.it/FTL.TXT", + "http://git.savannah.gnu.org/cgit/freetype/freetype2.git/tree/docs/FTL.TXT", + "http://gitlab.freedesktop.org/freetype/freetype/-/raw/master/docs/FTL.TXT", + }, + IsOsiApproved: false, + }, + "snia": { + Reference: "https://spdx.org/licenses/SNIA.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SNIA.json", + ReferenceNumber: 585, + Name: "SNIA Public License 1.1", + LicenseID: "SNIA", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/SNIA_Public_License", + }, + IsOsiApproved: false, + }, + "hippocratic-2.1": { + Reference: "https://spdx.org/licenses/Hippocratic-2.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Hippocratic-2.1.json", + ReferenceNumber: 586, + Name: "Hippocratic License 2.1", + LicenseID: "Hippocratic-2.1", + SeeAlso: []string{ + "https://firstdonoharm.dev/version/2/1/license.html", + "https://github.com/EthicalSource/hippocratic-license/blob/58c0e646d64ff6fbee275bfe2b9492f914e3ab2a/LICENSE.txt", + }, + IsOsiApproved: false, + }, + "simpl-2.0": { + Reference: "https://spdx.org/licenses/SimPL-2.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/SimPL-2.0.json", + ReferenceNumber: 587, + Name: "Simple Public License 2.0", + LicenseID: "SimPL-2.0", + SeeAlso: []string{ + "https://opensource.org/licenses/SimPL-2.0", + }, + IsOsiApproved: true, + }, + "bsd-3-clause-clear": { + Reference: "https://spdx.org/licenses/BSD-3-Clause-Clear.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BSD-3-Clause-Clear.json", + ReferenceNumber: 588, + Name: "BSD 3-Clause Clear License", + LicenseID: "BSD-3-Clause-Clear", + SeeAlso: []string{ + "http://labs.metacarta.com/license-explanation.html#license", + }, + IsOsiApproved: false, + }, + "spencer-86": { + Reference: "https://spdx.org/licenses/Spencer-86.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Spencer-86.json", + ReferenceNumber: 589, + Name: "Spencer License 86", + LicenseID: "Spencer-86", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", + }, + IsOsiApproved: false, + }, + "busl-1.1": { + Reference: "https://spdx.org/licenses/BUSL-1.1.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/BUSL-1.1.json", + ReferenceNumber: 590, + Name: "Business Source License 1.1", + LicenseID: "BUSL-1.1", + SeeAlso: []string{ + "https://mariadb.com/bsl11/", + }, + IsOsiApproved: false, + }, + "adsl": { + Reference: "https://spdx.org/licenses/ADSL.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/ADSL.json", + ReferenceNumber: 591, + Name: "Amazon Digital Services License", + LicenseID: "ADSL", + SeeAlso: []string{ + "https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense", + }, + IsOsiApproved: false, + }, + "oldap-2.3": { + Reference: "https://spdx.org/licenses/OLDAP-2.3.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OLDAP-2.3.json", + ReferenceNumber: 592, + Name: "Open LDAP Public License v2.3", + LicenseID: "OLDAP-2.3", + SeeAlso: []string{ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=d32cf54a32d581ab475d23c810b0a7fbaf8d63c3", + }, + IsOsiApproved: false, + }, + "interbase-1.0": { + Reference: "https://spdx.org/licenses/Interbase-1.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Interbase-1.0.json", + ReferenceNumber: 593, + Name: "Interbase Public License v1.0", + LicenseID: "Interbase-1.0", + SeeAlso: []string{ + "https://web.archive.org/web/20060319014854/http://info.borland.com/devsupport/interbase/opensource/IPL.html", + }, + IsOsiApproved: false, + }, + "oldap-2.5": { + Reference: "https://spdx.org/licenses/OLDAP-2.5.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/OLDAP-2.5.json", + ReferenceNumber: 594, + Name: "Open LDAP Public License v2.5", + LicenseID: "OLDAP-2.5", + SeeAlso: []string{ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=6852b9d90022e8593c98205413380536b1b5a7cf", + }, + IsOsiApproved: false, + }, + "artistic-1.0-perl": { + Reference: "https://spdx.org/licenses/Artistic-1.0-Perl.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/Artistic-1.0-Perl.json", + ReferenceNumber: 595, + Name: "Artistic License 1.0 (Perl)", + LicenseID: "Artistic-1.0-Perl", + SeeAlso: []string{ + "http://dev.perl.org/licenses/artistic.html", + }, + IsOsiApproved: true, + }, + "gsoap-1.3b": { + Reference: "https://spdx.org/licenses/gSOAP-1.3b.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/gSOAP-1.3b.json", + ReferenceNumber: 596, + Name: "gSOAP Public License v1.3b", + LicenseID: "gSOAP-1.3b", + SeeAlso: []string{ + "http://www.cs.fsu.edu/~engelen/license.html", + }, + IsOsiApproved: false, + }, + "nposl-3.0": { + Reference: "https://spdx.org/licenses/NPOSL-3.0.html", + IsDeprecatedLicenseID: false, + DetailsURL: "https://spdx.org/licenses/NPOSL-3.0.json", + ReferenceNumber: 597, + Name: "Non-Profit Open Software License 3.0", + LicenseID: "NPOSL-3.0", + SeeAlso: []string{ + "https://opensource.org/licenses/NOSL3.0", + }, + IsOsiApproved: true, + }, +}