From 555d2da41fba3744e229510f2cabe49604fe5e6a Mon Sep 17 00:00:00 2001 From: Christopher Phillips Date: Tue, 12 Dec 2023 00:11:55 -0500 Subject: [PATCH] chore: update developer documentation and validate makefile Signed-off-by: Christopher Phillips --- DEVELOPING.md | 37 - Makefile | 2 +- Taskfile.yaml | 22 + cmd/grant/cli/command/check.go | 3 +- cmd/grant/cli/command/list.go | 3 +- cmd/grant/cli/internal/check/report.go | 16 +- docs/DESIGN.md | 6 +- docs/DEVELOPING.md | 52 +- go.mod | 11 +- go.sum | 24 - grant/case.go | 39 +- grant/evalutation/license_evalutation.go | 10 +- grant/evalutation/syft.go | 2 +- grant/policy.go | 7 +- .../generate/generate_license_index.go | 19 +- internal/spdxlicense/license.go | 2 +- internal/spdxlicense/license_index.go | 8373 ++++++++--------- 17 files changed, 4315 insertions(+), 4313 deletions(-) delete mode 100644 DEVELOPING.md diff --git a/DEVELOPING.md b/DEVELOPING.md deleted file mode 100644 index 23931e7..0000000 --- a/DEVELOPING.md +++ /dev/null @@ -1,37 +0,0 @@ -## Developing - -### Today -``` -cmd/grant/ - command/ - check - list - -grant/ - license - package - policy - - - report/ - ... - -``` - -### Future -``` -cmd/grant/ - command/ - check - list - -grant/ - license - package - policy - - - report/ - ... - -``` \ No newline at end of file diff --git a/Makefile b/Makefile index aee88fb..846fbf8 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ TOOL_DIR = .tool BINNY = $(TOOL_DIR)/binny TASK = $(TOOL_DIR)/task -.DEFAULT_GOAL := make-default +.DEFAULT_GOAL := default ## Bootstrapping targets ################################# # note: we need to assume that binny and task have not already been installed diff --git a/Taskfile.yaml b/Taskfile.yaml index efa9b25..c0be424 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -11,6 +11,28 @@ vars: NEXT_VERSION: VERSION tasks: + default: + # desc: Run all validation tasks + aliases: + - pr-validations + - validations + cmds: + - task: static-analysis + - task: test + - task: build + + static-analysis: + desc: Run all static analysis tasks + cmds: + - task: check-go-mod-tidy + - task: check-licenses + - task: lint + + test: + desc: Run all levels of test + cmds: + - task: unit + ## Bootstrap tasks ################################# binny: internal: true diff --git a/cmd/grant/cli/command/check.go b/cmd/grant/cli/command/check.go index 7622dd4..672d2e0 100644 --- a/cmd/grant/cli/command/check.go +++ b/cmd/grant/cli/command/check.go @@ -2,7 +2,6 @@ package command import ( "fmt" - "os" "slices" "strings" @@ -105,5 +104,5 @@ func runCheck(cfg *CheckConfig, userInput []string) (errs error) { return errors.Wrap(err, fmt.Sprintf("unable to create report for inputs %s", userInput)) } - return rep.Render(os.Stdout) + return rep.Render() } diff --git a/cmd/grant/cli/command/list.go b/cmd/grant/cli/command/list.go index 77f335b..6e69310 100644 --- a/cmd/grant/cli/command/list.go +++ b/cmd/grant/cli/command/list.go @@ -1,7 +1,6 @@ package command import ( - "os" "slices" "github.com/spf13/cobra" @@ -57,5 +56,5 @@ func runList(cfg *ListConfig, userInput []string) error { if err != nil { return err } - return rep.RenderList(os.Stdout) + return rep.RenderList() } diff --git a/cmd/grant/cli/internal/check/report.go b/cmd/grant/cli/internal/check/report.go index 7779781..6d0f5b1 100644 --- a/cmd/grant/cli/internal/check/report.go +++ b/cmd/grant/cli/internal/check/report.go @@ -2,7 +2,6 @@ package check import ( "errors" - "io" "time" "github.com/gookit/color" @@ -64,27 +63,27 @@ func NewReport(rc ReportConfig, userRequests ...string) (*Report, error) { } // Render will call Render on each result in the report and return the report -func (r *Report) Render(out io.Writer) error { +func (r *Report) Render() error { switch r.Config.Format { case Table: - return r.renderCheckTree(out) + return r.renderCheckTree() case JSON: return errors.New("json format not yet supported") } return errors.Join(r.errors...) } -func (r *Report) RenderList(out io.Writer) error { +func (r *Report) RenderList() error { switch r.Config.Format { case Table: - return r.renderList(out) + return r.renderList() case JSON: return errors.New("json format not yet supported") } return errors.Join(r.errors...) } -func (r *Report) renderCheckTree(out io.Writer) error { +func (r *Report) renderCheckTree() error { var uiLists []list.Writer for _, res := range r.Results { resulList := newList() @@ -127,7 +126,7 @@ func (r *Report) renderCheckTree(out io.Writer) error { return nil } -func (r *Report) renderList(out io.Writer) error { +func (r *Report) renderList() error { var uiLists []list.Writer for _, res := range r.Results { resulList := newList() @@ -147,7 +146,6 @@ func (r *Report) renderList(out io.Writer) error { resulList.UnIndent() resulList.UnIndent() } - } renderOrphanPackages(resulList, res, true) } @@ -180,7 +178,6 @@ func renderOrphanPackages(l list.Writer, res evalutation.Result, invert bool) { } l.UnIndent() l.UnIndent() - return } func renderEvaluations(rule grant.Rule, showPackages bool, l list.Writer, e evalutation.LicenseEvaluations) { @@ -211,7 +208,6 @@ func renderEvaluations(rule grant.Rule, showPackages bool, l list.Writer, e eval } } l.UnIndent() - return } func newList() list.Writer { diff --git a/docs/DESIGN.md b/docs/DESIGN.md index e9ade53..3a3340f 100644 --- a/docs/DESIGN.md +++ b/docs/DESIGN.md @@ -1,9 +1,9 @@ ## Summary -Grant is a license compliance tool that reads and audits license from SBOM inputs. -It generates a pass or fail check depending on if the read licenses are in a deny list. +Grant is a license compliance tool that reads and audits license from container images, SBOM documents, and directory scans. +It generates a pass or fail check depending on if the read licenses adhear to the user's supplied rulesjk -### Syft Updates +### Syft Updates Needed to Support Grant - [Google String Classifier License](https://github.com/google/licenseclassifier/tree/main/stringclassifier) diff --git a/docs/DEVELOPING.md b/docs/DEVELOPING.md index 653cee9..03e103f 100644 --- a/docs/DEVELOPING.md +++ b/docs/DEVELOPING.md @@ -1 +1,51 @@ -# Developing \ No newline at end of file +# Developing + +## Getting started + +In order to test and develop in this repo you will need the following dependencies installed: +- Golang +- Docker +- make + +After cloning the following step can help you get setup: +1. run `make tools` to download tools, create the `/.tmp` dir, and download helper utilities. +2. run `make` to view the selection of developer commands in the Makefile +3. run `make build` to build the release snapshot binaries and packages +4. for an even quicker start you can run `go run cmd/grant/main.go` to print the syft help. + - this command `go run cmd/grant/main.go check alpine:latest` will compile and run grant against the alpine:latest image +5. view the README or grant help output for more output options + +The main make tasks for common static analysis and testing are `lint`, `format`, `lint-fix`, `unit` + +See `make help` for all the current make tasks. + +## Architecture + +At a high level, this is the package structure of grant: +``` +./cmd/grant/ +│ ├── cli/ +│ │ ├── cli.go // where all commands are wired up +│ │ ├── command/ // all command implementations +│ │ ├── internal/ // all internal command implementations +│ │ ├── option/ // all command flags and configuration options +│ │ └── tui/ // all handlers for events that are shown on the UI +│ └── main.go // entrypoint for the application +└── grant/ // the "core" grant library +``` + +## Testing + +### Levels of testing + +- `unit`: The default level of test which is distributed throughout the repo are unit tests. Any `_test.go` file that + does not reside somewhere within the `/test` directory is a unit test. Other forms of testing should be organized in + the `/test` directory. These tests should focus on correctness of functionality in depth. % test coverage metrics + only considers unit tests and no other forms of testing. + +- `integration`: TODO + +- `cli`: located with in `test/cli`, TODO + +- `acceptance`: located within `test/compare` and `test/install`, these are smoke-like tests that ensure that application + packaging and installation works as expected. TODO \ No newline at end of file diff --git a/go.mod b/go.mod index 6bd730c..2746ee3 100644 --- a/go.mod +++ b/go.mod @@ -15,7 +15,9 @@ require ( github.com/gobwas/glob v0.2.3 github.com/google/go-cmp v0.6.0 github.com/google/licenseclassifier/v2 v2.0.0 + github.com/gookit/color v1.5.4 github.com/hashicorp/go-multierror v1.1.1 + github.com/jedib0t/go-pretty/v6 v6.4.9 github.com/mitchellh/go-homedir v1.1.0 github.com/pkg/errors v0.9.1 github.com/spf13/cobra v1.8.0 @@ -44,7 +46,6 @@ require ( github.com/andybalholm/brotli v1.0.4 // indirect github.com/aquasecurity/go-pep440-version v0.0.0-20210121094942-22b2f8951d46 // indirect github.com/aquasecurity/go-version v0.0.0-20210121072130-637058cfe492 // indirect - github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect github.com/becheran/wildmatch-go v1.0.0 // indirect github.com/bmatcuk/doublestar/v4 v4.6.1 // indirect @@ -84,8 +85,6 @@ require ( github.com/go-git/go-git/v5 v5.10.1 // indirect github.com/go-logr/logr v1.2.3 // indirect github.com/go-logr/stdr v1.2.2 // indirect - github.com/go-openapi/errors v0.20.4 // indirect - github.com/go-openapi/strfmt v0.21.9 // indirect github.com/go-restruct/restruct v1.2.0-alpha // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect @@ -95,15 +94,11 @@ require ( github.com/google/licensecheck v0.3.1 // indirect github.com/google/pprof v0.0.0-20221118152302-e6195bd50e26 // indirect github.com/google/uuid v1.4.0 // indirect - github.com/gookit/color v1.5.4 // indirect github.com/hashicorp/errwrap v1.1.0 // indirect github.com/hashicorp/hcl v1.0.0 // indirect github.com/iancoleman/strcase v0.3.0 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect - github.com/jedib0t/go-prettY v4.3.0+incompatible // indirect - github.com/jedib0t/go-pretty v4.3.0+incompatible // indirect - github.com/jedib0t/go-pretty/v6 v6.4.9 // indirect github.com/jinzhu/copier v0.4.0 // indirect github.com/kastenhq/goversion v0.0.0-20230811215019-93b2f8823953 // indirect github.com/kevinburke/ssh_config v1.2.0 // indirect @@ -133,7 +128,6 @@ require ( github.com/muesli/reflow v0.3.0 // indirect github.com/muesli/termenv v0.15.2 // indirect github.com/nwaples/rardecode v1.1.0 // indirect - github.com/oklog/ulid v1.3.1 // indirect github.com/opencontainers/go-digest v1.0.0 // indirect github.com/opencontainers/image-spec v1.1.0-rc3 // indirect github.com/opencontainers/runc v1.1.5 // indirect @@ -178,7 +172,6 @@ require ( github.com/xanzy/ssh-agent v0.3.3 // indirect github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect - go.mongodb.org/mongo-driver v1.13.0 // indirect go.mozilla.org/pkcs7 v0.0.0-20210826202110-33d05740a352 // indirect go.opencensus.io v0.24.0 // indirect go.opentelemetry.io/otel v1.14.0 // indirect diff --git a/go.sum b/go.sum index e00e2cc..3210c3f 100644 --- a/go.sum +++ b/go.sum @@ -119,8 +119,6 @@ github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= -github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 h1:DklsrG3dyBCFEj5IhUbnKptjxatkF07cF2ak3yi77so= -github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw= github.com/aymanbagabas/go-osc52/v2 v2.0.1 h1:HwpRHbFMcZLEVr42D4p7XBqjyuxQH5SMiErDT4WkJ2k= github.com/aymanbagabas/go-osc52/v2 v2.0.1/go.mod h1:uYgXzlJ7ZpABp8OJ+exZzJJhRNQ2ASbcXHWsFqH8hp8= github.com/becheran/wildmatch-go v1.0.0 h1:mE3dGGkTmpKtT4Z+88t8RStG40yN9T+kFEGj2PZFSzA= @@ -291,10 +289,6 @@ github.com/go-logr/logr v1.2.3 h1:2DntVwHkVopvECVRSlL5PSo9eG+cAkDCuckLubN+rq0= github.com/go-logr/logr v1.2.3/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= -github.com/go-openapi/errors v0.20.4 h1:unTcVm6PispJsMECE3zWgvG4xTiKda1LIR5rCRWLG6M= -github.com/go-openapi/errors v0.20.4/go.mod h1:Z3FlZ4I8jEGxjUK+bugx3on2mIAk4txuAOhlsB1FSgk= -github.com/go-openapi/strfmt v0.21.9 h1:LnEGOO9qyEC1v22Bzr323M98G13paIUGPU7yeJtG9Xs= -github.com/go-openapi/strfmt v0.21.9/go.mod h1:0k3v301mglEaZRJdDDGSlN6Npq4VMVU69DE0LUyf7uA= github.com/go-restruct/restruct v1.2.0-alpha h1:2Lp474S/9660+SJjpVxoKuWX09JsXHSrdV7Nv3/gkvc= github.com/go-restruct/restruct v1.2.0-alpha/go.mod h1:KqrpKpn4M8OLznErihXTGLlsXFGeLxHUrLRRI/1YjGk= github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= @@ -342,7 +336,6 @@ github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= -github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.2/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.4 h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM= @@ -450,10 +443,6 @@ github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2 github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 h1:BQSFePA1RWJOlocH6Fxy8MmwDt+yVQYULKfN0RoTN8A= github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i6rXxKeerYnT8Nvf0QmHCRC1n8sfWVwXF2Frvo= -github.com/jedib0t/go-prettY v4.3.0+incompatible h1:KSxHQpgXoBkjYgg/7zeFKRlkNbyUayy464i+up4UaVI= -github.com/jedib0t/go-prettY v4.3.0+incompatible/go.mod h1:EGE3JiLUMETCgDhS2BpKROn74Lq1OOOwtnrP/HlkmOM= -github.com/jedib0t/go-pretty v4.3.0+incompatible h1:CGs8AVhEKg/n9YbUenWmNStRW2PHJzaeDodcfvRAbIo= -github.com/jedib0t/go-pretty v4.3.0+incompatible/go.mod h1:XemHduiw8R651AF9Pt4FwCTKeG3oo7hrHJAoznj9nag= github.com/jedib0t/go-pretty/v6 v6.4.9 h1:vZ6bjGg2eBSrJn365qlxGcaWu09Id+LHtrfDWlB2Usc= github.com/jedib0t/go-pretty/v6 v6.4.9/go.mod h1:Ndk3ase2CkQbXLLNf5QDHoYb6J9WtVfmHZu9n8rk2xs= github.com/jinzhu/copier v0.4.0 h1:w3ciUoD19shMCRargcpm0cm91ytaBhDvuRpz1ODO/U8= @@ -474,7 +463,6 @@ github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+o github.com/klauspost/compress v1.4.1/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= github.com/klauspost/compress v1.11.4/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= github.com/klauspost/compress v1.11.7/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= -github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= github.com/klauspost/compress v1.17.0 h1:Rnbp4K9EjcDuVuHtd0dgA4qNuv9yKDYKK1ulpJwgrqM= github.com/klauspost/compress v1.17.0/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE= github.com/klauspost/cpuid v1.2.0/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= @@ -563,7 +551,6 @@ github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJ github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= -github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe/go.mod h1:wL8QJuTMNUDYhXwkmfOly8iTdp5TEcJFWZD2D7SIkUc= github.com/morikuni/aec v1.0.0 h1:nP9CBfwrvYnBRgY6qfDQkygYDmYwOilePFkwzv4dU8A= github.com/morikuni/aec v1.0.0/go.mod h1:BbKIizmSmc5MMPqRYbxO4ZU0S0+P200+tUnFx7PXmsc= github.com/mrunalp/fileutils v0.5.0/go.mod h1:M1WthSahJixYnrXQl/DFQuteStB1weuxD2QJNHXfbSQ= @@ -576,11 +563,8 @@ github.com/muesli/reflow v0.3.0/go.mod h1:pbwTDkVPibjO2kyvBQRBxTWEEGDGq0FlB1BIKt github.com/muesli/termenv v0.15.2 h1:GohcuySI0QmI3wN8Ok9PtKGkgkFIk7y6Vpb5PvrY+Wo= github.com/muesli/termenv v0.15.2/go.mod h1:Epx+iuz8sNs7mNKhxzH4fWXGNpZwUaJKRS1noLXviQ8= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= -github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= github.com/nwaples/rardecode v1.1.0 h1:vSxaY8vQhOcVr4mm5e8XllHWTiM4JF507A0Katqw7MQ= github.com/nwaples/rardecode v1.1.0/go.mod h1:5DzqNKiOdpKKBH87u8VlvAnPZMXcGRhxWkRpHbbfGS0= -github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= -github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/onsi/gomega v1.27.10 h1:naR28SdDFlqrG6kScpT8VWpu1xWY5nJRCF3XaYyBjhI= github.com/onsi/gomega v1.27.10/go.mod h1:RsS8tutOdbdgzbPtzzATp12yT7kM5I5aElG3evPbQ0M= github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U= @@ -767,9 +751,6 @@ github.com/wagoodman/go-progress v0.0.0-20230925121702-07e42b3cdba0 h1:0KGbf+0SM github.com/wagoodman/go-progress v0.0.0-20230925121702-07e42b3cdba0/go.mod h1:jLXFoL31zFaHKAAyZUh+sxiTDFe1L1ZHrcK2T1itVKA= github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM= github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw= -github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI= -github.com/xdg-go/scram v1.1.2/go.mod h1:RT/sEzTbU5y00aCK8UOx6R7YryM0iF1N2MOmC3kKLN4= -github.com/xdg-go/stringprep v1.0.4/go.mod h1:mPGuuIYwz7CmR2bT9j4GbQqutWS1zV24gijq1dTyGkM= github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb h1:zGWFAtiMcyryUHoUjUJX0/lt1H2+i2Ka2n+D3DImSNo= github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0= @@ -780,7 +761,6 @@ github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 h1:nIPpBwaJSVYIxUFsDv3M8ofm github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8/go.mod h1:HUYIGzjTL3rfEspMxjDjgmT5uz5wzYJKVo23qUhYTos= github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 h1:QldyIu/L63oPpyvQmHgvgickp1Yw510KJOqX7H24mg8= github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778/go.mod h1:2MuV+tbUrU1zIOPMxZ5EncGwgmMJsa+9ucAQZXxsObs= -github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d/go.mod h1:rHwXgn7JulP+udvsHwJoVG1YGAP6VLg4y9I5dyZdqmA= github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= @@ -790,8 +770,6 @@ github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5t go.etcd.io/etcd/api/v3 v3.5.1/go.mod h1:cbVKeC6lCfl7j/8jBhAK6aIYO9XOjdptoxU/nLQcPvs= go.etcd.io/etcd/client/pkg/v3 v3.5.1/go.mod h1:IJHfcCEKxYu1Os13ZdwCwIUTUVGYTSAM3YSwc9/Ac1g= go.etcd.io/etcd/client/v2 v2.305.1/go.mod h1:pMEacxZW7o8pg4CrFE7pquyCJJzZvkvdD2RibOCCCGs= -go.mongodb.org/mongo-driver v1.13.0 h1:67DgFFjYOCMWdtTEmKFpV3ffWlFnh+CYZ8ZS/tXWUfY= -go.mongodb.org/mongo-driver v1.13.0/go.mod h1:/rGBTebI3XYboVmgz+Wv3Bcbl3aD0QF9zl6kDDw18rQ= go.mozilla.org/pkcs7 v0.0.0-20210826202110-33d05740a352 h1:CCriYyAfq1Br1aIYettdHZTy8mBTIPo7We18TuO/bak= go.mozilla.org/pkcs7 v0.0.0-20210826202110-33d05740a352/go.mod h1:SNgMg+EgDFwmvSmLRTNKC5fegJjB7v23qTQ0XLGUNHk= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= @@ -1061,7 +1039,6 @@ golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= @@ -1292,7 +1269,6 @@ gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLks gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= diff --git a/grant/case.go b/grant/case.go index 1fe5b92..6f9fc19 100644 --- a/grant/case.go +++ b/grant/case.go @@ -64,7 +64,7 @@ func NewCases(p Policy, userInputs ...string) []Case { func determineRequestCase(userRequest string) (c Case, err error) { switch { case isStdin(userRequest): - return handleStdin(userRequest) + return handleStdin() case isFile(userRequest): return handleFile(userRequest) case isDirectory(userRequest): @@ -74,13 +74,16 @@ func determineRequestCase(userRequest string) (c Case, err error) { } } -func handleStdin(path string) (c Case, err error) { +func handleStdin() (c Case, err error) { stdReader, err := decodeStdin(os.Stdin) if err != nil { return c, err } sb, _, _, err := format.NewDecoderCollection(format.Decoders()...).Decode(stdReader) + if err != nil { + return c, fmt.Errorf("unable to determine SBOM or licenses for stdin: %w", err) + } if sb != nil { return Case{ SBOMS: []sbom.SBOM{*sb}, @@ -133,18 +136,33 @@ func handleFile(path string) (c Case, err error) { } sb, _, _, err := format.NewDecoderCollection(format.Decoders()...).Decode(bytes) + if err != nil { + return c, fmt.Errorf("unable to determine SBOM or licenses for %s: %w", path, err) + } if sb != nil { return Case{ SBOMS: []sbom.SBOM{*sb}, Licenses: make([]License, 0), }, nil } + licenses, err := handleLicenseFile(path) + if err != nil { + return c, fmt.Errorf("unable to determine SBOM or licenses for %s: %w", path, err) + } + + return Case{ + SBOMS: make([]sbom.SBOM, 0), + Licenses: licenses, + UserInput: path, + }, nil +} +func handleLicenseFile(path string) ([]License, error) { // alright we couldn't get an SBOM, let's see if the bytes are just a LICENSE (google license classifier) // TODO: this is a little heavy, we might want to generate a backend and reuse it for all the files we're checking be, err := backend.New() if err != nil { - return c, err + return nil, err } defer be.Close() @@ -160,23 +178,18 @@ func handleFile(path string) (c Case, err error) { for _, err := range errs { log.Errorf("unable to classify license: %+v", err) } - return c, fmt.Errorf("unable to classify license: %+v", err) + return nil, fmt.Errorf("unable to classify license: %+v", err) } // re-enable logging for the rest of the application golog.SetOutput(os.Stdout) results := be.GetResults() if len(results) == 0 { - return c, fmt.Errorf("unable to determine SBOM or licenses for %s", path) + return nil, fmt.Errorf("no results from license classifier") } licenses := grantLicenseFromClassifierResults(results) - - return Case{ - SBOMS: make([]sbom.SBOM, 0), - Licenses: licenses, - UserInput: path, - }, nil + return licenses, nil } func handleDir(root string) (c Case, err error) { @@ -280,7 +293,7 @@ func generateSyftSBOM(path string) (sb sbom.SBOM, err error) { func isDirectory(path string) bool { fileInfo, err := os.Stat(path) if err != nil { - //log.Errorf("unable to stat directory %s: %+v", path, err) + // log.Errorf("unable to stat directory %s: %+v", path, err) return false } return fileInfo.IsDir() @@ -302,7 +315,7 @@ func isArchive(path string) bool { func isFile(path string) bool { fileInfo, err := os.Stat(path) if err != nil { - //log.Errorf("unable to stat file %s: %+v", path, err) + // log.Errorf("unable to stat file %s: %+v", path, err) return false } return !fileInfo.IsDir() diff --git a/grant/evalutation/license_evalutation.go b/grant/evalutation/license_evalutation.go index 2f78a15..55503eb 100644 --- a/grant/evalutation/license_evalutation.go +++ b/grant/evalutation/license_evalutation.go @@ -10,7 +10,7 @@ import ( func NewLicenseEvaluations(ec EvaluationConfig, c grant.Case) LicenseEvaluations { evaluations := make([]LicenseEvaluation, 0) for _, sb := range c.SBOMS { - evaluations = checkSBOM(ec, c, sb) + evaluations = checkSBOM(ec, sb) } for _, l := range c.Licenses { @@ -21,7 +21,7 @@ func NewLicenseEvaluations(ec EvaluationConfig, c grant.Case) LicenseEvaluations return evaluations } -func checkSBOM(ec EvaluationConfig, c grant.Case, sb sbom.SBOM) LicenseEvaluations { +func checkSBOM(ec EvaluationConfig, sb sbom.SBOM) LicenseEvaluations { evaluations := make([]LicenseEvaluation, 0) for pkg := range sb.Artifacts.Packages.Enumerate() { // since we use syft as a library to generate the sbom we need to convert its packages/licenses to grant types @@ -95,7 +95,7 @@ func (le LicenseEvaluations) Packages(license string) []string { } } } - sort.Sort(sort.StringSlice(packages)) + sort.Strings(packages) return packages } @@ -111,7 +111,7 @@ func (le LicenseEvaluations) EmptyPackages() []string { } } } - sort.Sort(sort.StringSlice(packages)) + sort.Strings(packages) return packages } @@ -148,7 +148,7 @@ func (le LicenseEvaluations) GetLicenses() []string { licenses = append(licenses, e.License.Name) } } - sort.Sort(sort.StringSlice(licenses)) + sort.Strings(licenses) return licenses } diff --git a/grant/evalutation/syft.go b/grant/evalutation/syft.go index 54666a3..7df41e3 100644 --- a/grant/evalutation/syft.go +++ b/grant/evalutation/syft.go @@ -56,7 +56,7 @@ func convertSyftLicenses(set syftPkg.LicenseSet) (licenses []grant.License) { func handleSPDXLicense(license syftPkg.License, licenses []grant.License, licenseLocations []string, checked map[string]bool) []grant.License { extractedLicenses, err := spdxexp.ExtractLicenses(license.SPDXExpression) if err != nil { - //log.Errorf("unable to extract licenses from SPDX expression: %s", license.SPDXExpression) + // log.Errorf("unable to extract licenses from SPDX expression: %s", license.SPDXExpression) return addNonSPDXLicense(licenses, license, licenseLocations) } diff --git a/grant/policy.go b/grant/policy.go index 64038d1..efadeea 100644 --- a/grant/policy.go +++ b/grant/policy.go @@ -38,10 +38,7 @@ func NewPolicy(matchNonSPDX bool, rules ...Rule) (p Policy, err error) { // IsEmpty returns true if the policy has no allow or deny licenses func (p Policy) IsEmpty() bool { - if len(p.Rules) == 0 { - return true - } - return false + return len(p.Rules) == 0 } // IsDenied returns true if the given license is denied by the policy @@ -59,7 +56,7 @@ func (p Policy) IsDenied(license License, pkg *Package) (bool, *Rule) { toMatch = strings.ToLower(license.Name) } - toMatch = strings.ToLower(license.Name) + toMatch = strings.ToLower(toMatch) if rule.Glob.Match(toMatch) && toMatch != "" { if pkg == nil { return true, &rule diff --git a/internal/spdxlicense/generate/generate_license_index.go b/internal/spdxlicense/generate/generate_license_index.go index 3fd56fa..543ff3c 100644 --- a/internal/spdxlicense/generate/generate_license_index.go +++ b/internal/spdxlicense/generate/generate_license_index.go @@ -15,8 +15,6 @@ import ( 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{ @@ -63,7 +61,7 @@ func main() { } func generate() error { - spdxLicenseResposne, err := fetchLicenses(url) + spdxLicenseResposne, err := fetchLicenses() if err != nil { return err } @@ -79,7 +77,7 @@ func generate() error { } defer f.Close() - if err := codeTemplate.Execute(f, struct { + return codeTemplate.Execute(f, struct { Timestamp string URL string Version string @@ -87,23 +85,20 @@ func generate() error { Licenses []spdxlicense.SPDXLicense }{ Timestamp: time.Now().UTC().Format(time.RFC3339), - URL: url, + URL: "https://spdx.org/licenses/licenses.json", 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) +func fetchLicenses() (r *spdxlicense.Response, err error) { + response, err := http.Get("https://spdx.org/licenses/licenses.json") if err != nil { return r, err } defer response.Body.Close() - var spdxLicenseResponse spdxlicense.SPDXLicenseResponse + var spdxLicenseResponse spdxlicense.Response if err := json.NewDecoder(response.Body).Decode(&spdxLicenseResponse); err != nil { return r, err } diff --git a/internal/spdxlicense/license.go b/internal/spdxlicense/license.go index c85e303..f7a3ae6 100644 --- a/internal/spdxlicense/license.go +++ b/internal/spdxlicense/license.go @@ -7,7 +7,7 @@ import ( // SPDXLicenseResponse is the response from the SPDX license list endpoint // https://spdx.org/licenses/licenses.json -type SPDXLicenseResponse struct { +type Response struct { LicenseListVersion string `json:"licenseListVersion"` ReleaseDate string `json:"releaseDate"` Licenses []SPDXLicense `json:"licenses"` diff --git a/internal/spdxlicense/license_index.go b/internal/spdxlicense/license_index.go index ff948ea..280940f 100644 --- a/internal/spdxlicense/license_index.go +++ b/internal/spdxlicense/license_index.go @@ -9,2545 +9,2545 @@ const ReleaseData = "2023-10-05" var index = map[string]SPDXLicense{ "qhull": { - Reference: "https://spdx.org/licenses/Qhull.html", + Reference: "https://spdx.org/licenses/Qhull.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Qhull.json", - ReferenceNumber: 0, - Name: "Qhull License", - LicenseID: "Qhull", + DetailsURL: "https://spdx.org/licenses/Qhull.json", + ReferenceNumber: 0, + Name: "Qhull License", + LicenseID: "Qhull", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Qhull", - }, + "https://fedoraproject.org/wiki/Licensing/Qhull", + }, IsOsiApproved: false, }, "nosl": { - Reference: "https://spdx.org/licenses/NOSL.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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/", - }, + "https://cdla.dev/open-use-of-data-agreement-v1-0/", + }, IsOsiApproved: false, }, "drl-1.0": { - Reference: "https://spdx.org/licenses/DRL-1.0.html", + 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", + 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", - }, + "https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md", + }, IsOsiApproved: false, }, "imagemagick": { - Reference: "https://spdx.org/licenses/ImageMagick.html", + Reference: "https://spdx.org/licenses/ImageMagick.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/ImageMagick.json", - ReferenceNumber: 5, - Name: "ImageMagick License", - LicenseID: "ImageMagick", + DetailsURL: "https://spdx.org/licenses/ImageMagick.json", + ReferenceNumber: 5, + Name: "ImageMagick License", + LicenseID: "ImageMagick", SeeAlso: []string{ - "http://www.imagemagick.org/script/license.php", - }, + "http://www.imagemagick.org/script/license.php", + }, IsOsiApproved: false, }, "mpich2": { - Reference: "https://spdx.org/licenses/mpich2.html", + Reference: "https://spdx.org/licenses/mpich2.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/mpich2.json", - ReferenceNumber: 6, - Name: "mpich2 License", - LicenseID: "mpich2", + DetailsURL: "https://spdx.org/licenses/mpich2.json", + ReferenceNumber: 6, + Name: "mpich2 License", + LicenseID: "mpich2", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/MIT", - }, + "https://fedoraproject.org/wiki/Licensing/MIT", + }, IsOsiApproved: false, }, "cc-by-sa-4.0": { - Reference: "https://spdx.org/licenses/CC-BY-SA-4.0.html", + 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", + 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", - }, + "https://creativecommons.org/licenses/by-sa/4.0/legalcode", + }, IsOsiApproved: false, }, "spl-1.0": { - Reference: "https://spdx.org/licenses/SPL-1.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/SPL-1.0", + }, IsOsiApproved: true, }, "mcphee-slideshow": { - Reference: "https://spdx.org/licenses/McPhee-slideshow.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/MIT#enna", + }, IsOsiApproved: false, }, "osl-2.1": { - Reference: "https://spdx.org/licenses/OSL-2.1.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/LBNLBSD", + }, IsOsiApproved: true, }, "ofl-1.0-rfn": { - Reference: "https://spdx.org/licenses/OFL-1.0-RFN.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/GPL-3.0", + }, IsOsiApproved: true, }, "watcom-1.0": { - Reference: "https://spdx.org/licenses/Watcom-1.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/Watcom-1.0", + }, IsOsiApproved: true, }, "mpl-1.0": { - Reference: "https://spdx.org/licenses/MPL-1.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/MPL-1.0", + }, IsOsiApproved: true, }, "aladdin": { - Reference: "https://spdx.org/licenses/Aladdin.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + DetailsURL: "https://spdx.org/licenses/NLPL.json", + ReferenceNumber: 21, + Name: "No Limit Public License", + LicenseID: "NLPL", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/NLPL", - }, + "https://fedoraproject.org/wiki/Licensing/NLPL", + }, IsOsiApproved: false, }, "mplus": { - Reference: "https://spdx.org/licenses/mplus.html", + Reference: "https://spdx.org/licenses/mplus.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/mplus.json", - ReferenceNumber: 22, - Name: "mplus Font License", - LicenseID: "mplus", + 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", - }, + "https://fedoraproject.org/wiki/Licensing:Mplus?rd=Licensing/mplus", + }, IsOsiApproved: false, }, "ecl-1.0": { - Reference: "https://spdx.org/licenses/ECL-1.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/ECL-1.0", + }, IsOsiApproved: true, }, "fwlw": { - Reference: "https://spdx.org/licenses/fwlw.html", + Reference: "https://spdx.org/licenses/fwlw.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/fwlw.json", - ReferenceNumber: 24, - Name: "fwlw License", - LicenseID: "fwlw", + 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", - }, + "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", + 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", + 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", - }, + "https://blueoakcouncil.org/license/1.0.0", + }, IsOsiApproved: false, }, "jpnic": { - Reference: "https://spdx.org/licenses/JPNIC.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://www.gnu.org/licenses/fdl-1.3.txt", + }, IsOsiApproved: false, }, "cfitsio": { - Reference: "https://spdx.org/licenses/CFITSIO.html", + Reference: "https://spdx.org/licenses/CFITSIO.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/CFITSIO.json", - ReferenceNumber: 30, - Name: "CFITSIO License", - LicenseID: "CFITSIO", + 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", - }, + "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", + 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", + 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", - }, + "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + }, IsOsiApproved: false, }, "xskat": { - Reference: "https://spdx.org/licenses/XSkat.html", + Reference: "https://spdx.org/licenses/XSkat.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/XSkat.json", - ReferenceNumber: 32, - Name: "XSkat License", - LicenseID: "XSkat", + DetailsURL: "https://spdx.org/licenses/XSkat.json", + ReferenceNumber: 32, + Name: "XSkat License", + LicenseID: "XSkat", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/XSkat_License", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by/3.0/nl/legalcode", + }, IsOsiApproved: false, }, "fsful": { - Reference: "https://spdx.org/licenses/FSFUL.html", + Reference: "https://spdx.org/licenses/FSFUL.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/FSFUL.json", - ReferenceNumber: 36, - Name: "FSF Unlimited License", - LicenseID: "FSFUL", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License", + }, IsOsiApproved: false, }, "hpnd-export-us": { - Reference: "https://spdx.org/licenses/HPND-export-US.html", + 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", + 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", - }, + "https://www.kermitproject.org/ck90.html#source", + }, IsOsiApproved: false, }, "catosl-1.1": { - Reference: "https://spdx.org/licenses/CATOSL-1.1.html", + 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", + 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", - }, + "https://opensource.org/licenses/CATOSL-1.1", + }, IsOsiApproved: true, }, "zpl-2.1": { - Reference: "https://spdx.org/licenses/ZPL-2.1.html", + 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", + 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/", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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/", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt", + }, IsOsiApproved: false, }, "gpl-2.0+": { - Reference: "https://spdx.org/licenses/GPL-2.0+.html", + 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+", + 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", - }, + "https://opensource.org/licenses/GPL-2.0", + }, IsOsiApproved: true, }, "saxpath": { - Reference: "https://spdx.org/licenses/Saxpath.html", + Reference: "https://spdx.org/licenses/Saxpath.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Saxpath.json", - ReferenceNumber: 45, - Name: "Saxpath License", - LicenseID: "Saxpath", + DetailsURL: "https://spdx.org/licenses/Saxpath.json", + ReferenceNumber: 45, + Name: "Saxpath License", + LicenseID: "Saxpath", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Saxpath_License", - }, + "https://fedoraproject.org/wiki/Licensing/Saxpath_License", + }, IsOsiApproved: false, }, "zpl-2.0": { - Reference: "https://spdx.org/licenses/ZPL-2.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/ZPL-2.0", + }, IsOsiApproved: true, }, "bitstream-charter": { - Reference: "https://spdx.org/licenses/Bitstream-Charter.html", + 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", + 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", - }, + "https://raw.githubusercontent.com/blackhole89/notekit/master/data/fonts/Charter%20license.txt", + }, IsOsiApproved: false, }, "openssl": { - Reference: "https://spdx.org/licenses/OpenSSL.html", + Reference: "https://spdx.org/licenses/OpenSSL.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/OpenSSL.json", - ReferenceNumber: 48, - Name: "OpenSSL License", - LicenseID: "OpenSSL", + DetailsURL: "https://spdx.org/licenses/OpenSSL.json", + ReferenceNumber: 48, + Name: "OpenSSL License", + LicenseID: "OpenSSL", SeeAlso: []string{ - "http://www.openssl.org/source/license.html", - }, + "http://www.openssl.org/source/license.html", + }, IsOsiApproved: false, }, "clartistic": { - Reference: "https://spdx.org/licenses/ClArtistic.html", + Reference: "https://spdx.org/licenses/ClArtistic.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/ClArtistic.json", - ReferenceNumber: 49, - Name: "Clarified Artistic License", - LicenseID: "ClArtistic", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/MPL-2.0", + }, IsOsiApproved: true, }, "x11": { - Reference: "https://spdx.org/licenses/X11.html", + Reference: "https://spdx.org/licenses/X11.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/X11.json", - ReferenceNumber: 51, - Name: "X11 License", - LicenseID: "X11", + 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", - }, + "http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3", + }, IsOsiApproved: false, }, "fsfullr": { - Reference: "https://spdx.org/licenses/FSFULLR.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by-sa/2.5/legalcode", + }, IsOsiApproved: false, }, "mpeg-ssg": { - Reference: "https://spdx.org/licenses/MPEG-SSG.html", + 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", + 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", - }, + "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", + Reference: "https://spdx.org/licenses/wxWindows.html", IsDeprecatedLicenseID: true, - DetailsURL: "https://spdx.org/licenses/wxWindows.json", - ReferenceNumber: 57, - Name: "wxWindows Library License", - LicenseID: "wxWindows", + DetailsURL: "https://spdx.org/licenses/wxWindows.json", + ReferenceNumber: 57, + Name: "wxWindows Library License", + LicenseID: "wxWindows", SeeAlso: []string{ - "https://opensource.org/licenses/WXwindows", - }, + "https://opensource.org/licenses/WXwindows", + }, IsOsiApproved: true, }, "lppl-1.0": { - Reference: "https://spdx.org/licenses/LPPL-1.0.html", + 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", + 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", - }, + "http://www.latex-project.org/lppl/lppl-1-0.txt", + }, IsOsiApproved: false, }, "lgpl-2.0": { - Reference: "https://spdx.org/licenses/LGPL-2.0.html", + 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", + 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", - }, + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html", + }, IsOsiApproved: true, }, "freeimage": { - Reference: "https://spdx.org/licenses/FreeImage.html", + 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", + 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", - }, + "http://freeimage.sourceforge.net/freeimage-license.txt", + }, IsOsiApproved: false, }, "cern-ohl-1.2": { - Reference: "https://spdx.org/licenses/CERN-OHL-1.2.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/Artistic-1.0", + }, IsOsiApproved: true, }, "lzma-sdk-9.22": { - Reference: "https://spdx.org/licenses/LZMA-SDK-9.22.html", + 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", + 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/", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by-nd/3.0/de/legalcode", + }, IsOsiApproved: false, }, "afmparse": { - Reference: "https://spdx.org/licenses/Afmparse.html", + Reference: "https://spdx.org/licenses/Afmparse.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Afmparse.json", - ReferenceNumber: 66, - Name: "Afmparse License", - LicenseID: "Afmparse", + DetailsURL: "https://spdx.org/licenses/Afmparse.json", + ReferenceNumber: 66, + Name: "Afmparse License", + LicenseID: "Afmparse", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Afmparse", - }, + "https://fedoraproject.org/wiki/Licensing/Afmparse", + }, IsOsiApproved: false, }, "cern-ohl-s-2.0": { - Reference: "https://spdx.org/licenses/CERN-OHL-S-2.0.html", + 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", + 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", - }, + "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2", + }, IsOsiApproved: true, }, "doc": { - Reference: "https://spdx.org/licenses/DOC.html", + Reference: "https://spdx.org/licenses/DOC.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/DOC.json", - ReferenceNumber: 68, - Name: "DOC License", - LicenseID: "DOC", + 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", - }, + "https://www.dre.vanderbilt.edu/~schmidt/ACE-copying.html", + }, IsOsiApproved: false, }, "gl2ps": { - Reference: "https://spdx.org/licenses/GL2PS.html", + Reference: "https://spdx.org/licenses/GL2PS.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/GL2PS.json", - ReferenceNumber: 69, - Name: "GL2PS License", - LicenseID: "GL2PS", + DetailsURL: "https://spdx.org/licenses/GL2PS.json", + ReferenceNumber: 69, + Name: "GL2PS License", + LicenseID: "GL2PS", SeeAlso: []string{ - "http://www.geuz.org/gl2ps/COPYING.GL2PS", - }, + "http://www.geuz.org/gl2ps/COPYING.GL2PS", + }, IsOsiApproved: false, }, "ypl-1.1": { - Reference: "https://spdx.org/licenses/YPL-1.1.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode", + }, IsOsiApproved: false, }, "ecos-2.0": { - Reference: "https://spdx.org/licenses/eCos-2.0.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web", + }, IsOsiApproved: false, }, "sendmail": { - Reference: "https://spdx.org/licenses/Sendmail.html", + Reference: "https://spdx.org/licenses/Sendmail.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Sendmail.json", - ReferenceNumber: 75, - Name: "Sendmail License", - LicenseID: "Sendmail", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/AGPL-3.0", + }, IsOsiApproved: true, }, "cecill-2.0": { - Reference: "https://spdx.org/licenses/CECILL-2.0.html", + 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", + 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", - }, + "http://www.cecill.info/licences/Licence_CeCILL_V2-en.html", + }, IsOsiApproved: false, }, "mit-advertising": { - Reference: "https://spdx.org/licenses/MIT-advertising.html", + 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", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising", + }, IsOsiApproved: false, }, "snprintf": { - Reference: "https://spdx.org/licenses/snprintf.html", + Reference: "https://spdx.org/licenses/snprintf.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/snprintf.json", - ReferenceNumber: 79, - Name: "snprintf License", - LicenseID: "snprintf", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by/2.5/au/legalcode", + }, IsOsiApproved: false, }, "naist-2003": { - Reference: "https://spdx.org/licenses/NAIST-2003.html", + 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", + 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", - }, + "https://github.com/nodejs/node/blob/4a19cc8947b1bba2b2d27816ec3d0edf9b28e503/LICENSE#L343", + }, IsOsiApproved: false, }, "nbpl-1.0": { - Reference: "https://spdx.org/licenses/NBPL-1.0.html", + 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", + 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", - }, + "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", + Reference: "https://spdx.org/licenses/Ruby.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Ruby.json", - ReferenceNumber: 84, - Name: "Ruby License", - LicenseID: "Ruby", + 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", - }, + "https://www.ruby-lang.org/en/about/license.txt", + }, IsOsiApproved: false, }, "hpnd-doc": { - Reference: "https://spdx.org/licenses/HPND-doc.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/GPL-2.0", + }, IsOsiApproved: true, }, "smppl": { - Reference: "https://spdx.org/licenses/SMPPL.html", + 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", + 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", - }, + "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", + 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", + 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/", - }, + "https://sourceforge.net/projects/sevenzip/files/LZMA%20SDK/", + }, IsOsiApproved: false, }, "oldap-2.6": { - Reference: "https://spdx.org/licenses/OLDAP-2.6.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://paritylicense.com/versions/7.0.0.html", + }, IsOsiApproved: false, }, "clips": { - Reference: "https://spdx.org/licenses/Clips.html", + Reference: "https://spdx.org/licenses/Clips.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Clips.json", - ReferenceNumber: 92, - Name: "Clips License", - LicenseID: "Clips", + 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", - }, + "https://github.com/DrItanium/maya/blob/master/LICENSE.CLIPS", + }, IsOsiApproved: false, }, "symlinks": { - Reference: "https://spdx.org/licenses/Symlinks.html", + Reference: "https://spdx.org/licenses/Symlinks.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Symlinks.json", - ReferenceNumber: 93, - Name: "Symlinks License", - LicenseID: "Symlinks", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "http://opensource.org/licenses/LiLiQ-Rplus-1.1", + }, IsOsiApproved: true, }, "bsd-2-clause-patent": { - Reference: "https://spdx.org/licenses/BSD-2-Clause-Patent.html", + 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", + 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", - }, + "https://opensource.org/licenses/BSDplusPatent", + }, IsOsiApproved: true, }, "cc-by-sa-1.0": { - Reference: "https://spdx.org/licenses/CC-BY-SA-1.0.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html", + }, IsOsiApproved: true, }, "intel-acpi": { - Reference: "https://spdx.org/licenses/Intel-ACPI.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2", + }, IsOsiApproved: true, }, "ssh-short": { - Reference: "https://spdx.org/licenses/SSH-short.html", + 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", + 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", - }, + "https://joinup.ec.europa.eu/svn/lesoll/trunk/italc/lib/src/dsa_key.cpp", + }, IsOsiApproved: false, }, "kazlib": { - Reference: "https://spdx.org/licenses/Kazlib.html", + Reference: "https://spdx.org/licenses/Kazlib.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Kazlib.json", - ReferenceNumber: 105, - Name: "Kazlib License", - LicenseID: "Kazlib", + 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", - }, + "http://git.savannah.gnu.org/cgit/kazlib.git/tree/except.c?id=0062df360c2d17d57f6af19b0e444c51feb99036", + }, IsOsiApproved: false, }, "tosl": { - Reference: "https://spdx.org/licenses/TOSL.html", + 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", + DetailsURL: "https://spdx.org/licenses/TOSL.json", + ReferenceNumber: 106, + Name: "Trusster Open Source License", + LicenseID: "TOSL", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/TOSL", - }, + "https://fedoraproject.org/wiki/Licensing/TOSL", + }, IsOsiApproved: false, }, "glwtpl": { - Reference: "https://spdx.org/licenses/GLWTPL.html", + 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", + 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", - }, + "https://github.com/me-shaon/GLWTPL/commit/da5f6bc734095efbacb442c0b31e33a65b9d6e85", + }, IsOsiApproved: false, }, "bsd-3-clause-modification": { - Reference: "https://spdx.org/licenses/BSD-3-Clause-Modification.html", + 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", + 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", - }, + "https://fedoraproject.org/wiki/Licensing:BSD#Modification_Variant", + }, IsOsiApproved: false, }, "oldap-2.2": { - Reference: "https://spdx.org/licenses/OLDAP-2.2.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/TORQUEv1.1", + }, IsOsiApproved: false, }, "psf-2.0": { - Reference: "https://spdx.org/licenses/PSF-2.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/Python-2.0", + }, IsOsiApproved: false, }, "cddl-1.1": { - Reference: "https://spdx.org/licenses/CDDL-1.1.html", + 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", + 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", - }, + "https://javaee.github.io/glassfish/LICENSE", + }, IsOsiApproved: false, }, "cdl-1.0": { - Reference: "https://spdx.org/licenses/CDL-1.0.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/OPL-2.1", + }, IsOsiApproved: true, }, "eupl-1.2": { - Reference: "https://spdx.org/licenses/EUPL-1.2.html", + 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", + 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", - }, + "https://opensource.org/licenses/EUPL-1.2", + }, IsOsiApproved: true, }, "standardml-nj": { - Reference: "https://spdx.org/licenses/StandardML-NJ.html", + 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", + 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", - }, + "https://www.smlnj.org/license.html", + }, IsOsiApproved: false, }, "cal-1.0": { - Reference: "https://spdx.org/licenses/CAL-1.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/CAL-1.0", + }, IsOsiApproved: true, }, "opl-uk-3.0": { - Reference: "https://spdx.org/licenses/OPL-UK-3.0.html", + 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", + 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/", - }, + "https://www.parliament.uk/site-information/copyright-parliament/open-parliament-licence/", + }, IsOsiApproved: false, }, "cronyx": { - Reference: "https://spdx.org/licenses/Cronyx.html", + Reference: "https://spdx.org/licenses/Cronyx.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Cronyx.json", - ReferenceNumber: 120, - Name: "Cronyx License", - LicenseID: "Cronyx", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "http://opensource.linux-mirror.org/licenses/afl-2.1.txt", + }, IsOsiApproved: true, }, "afl-1.2": { - Reference: "https://spdx.org/licenses/AFL-1.2.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://directory.fsf.org/wiki/License:Fdk", + }, IsOsiApproved: false, }, "bsd-1-clause": { - Reference: "https://spdx.org/licenses/BSD-1-Clause.html", + 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", + 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", - }, + "https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=326823", + }, IsOsiApproved: true, }, "psfrag": { - Reference: "https://spdx.org/licenses/psfrag.html", + Reference: "https://spdx.org/licenses/psfrag.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/psfrag.json", - ReferenceNumber: 126, - Name: "psfrag License", - LicenseID: "psfrag", + DetailsURL: "https://spdx.org/licenses/psfrag.json", + ReferenceNumber: 126, + Name: "psfrag License", + LicenseID: "psfrag", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/psfrag", - }, + "https://fedoraproject.org/wiki/Licensing/psfrag", + }, IsOsiApproved: false, }, "ofl-1.1-rfn": { - Reference: "https://spdx.org/licenses/OFL-1.1-RFN.html", + 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", + 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", - }, + "https://opensource.org/licenses/OFL-1.1", + }, IsOsiApproved: true, }, "cecill-1.0": { - Reference: "https://spdx.org/licenses/CECILL-1.0.html", + 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", + 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", - }, + "http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html", + }, IsOsiApproved: false, }, "tcp-wrappers": { - Reference: "https://spdx.org/licenses/TCP-wrappers.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode", + }, IsOsiApproved: false, }, "apl-1.0": { - Reference: "https://spdx.org/licenses/APL-1.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/APL-1.0", + }, IsOsiApproved: true, }, "knuth-ctan": { - Reference: "https://spdx.org/licenses/Knuth-CTAN.html", + 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", + DetailsURL: "https://spdx.org/licenses/Knuth-CTAN.json", + ReferenceNumber: 132, + Name: "Knuth CTAN License", + LicenseID: "Knuth-CTAN", SeeAlso: []string{ - "https://ctan.org/license/knuth", - }, + "https://ctan.org/license/knuth", + }, IsOsiApproved: false, }, "mit-testregex": { - Reference: "https://spdx.org/licenses/MIT-testregex.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + Reference: "https://spdx.org/licenses/Beerware.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Beerware.json", - ReferenceNumber: 137, - Name: "Beerware License", - LicenseID: "Beerware", + 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/", - }, + "https://people.freebsd.org/~phk/", + }, IsOsiApproved: false, }, "apache-2.0": { - Reference: "https://spdx.org/licenses/Apache-2.0.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "http://ac-archive.sourceforge.net/doc/copyright.html", + }, IsOsiApproved: false, }, "bsd-3-clause-sun": { - Reference: "https://spdx.org/licenses/BSD-3-Clause-Sun.html", + 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", + 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", - }, + "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", + Reference: "https://spdx.org/licenses/MakeIndex.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/MakeIndex.json", - ReferenceNumber: 142, - Name: "MakeIndex License", - LicenseID: "MakeIndex", + DetailsURL: "https://spdx.org/licenses/MakeIndex.json", + ReferenceNumber: 142, + Name: "MakeIndex License", + LicenseID: "MakeIndex", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/MakeIndex", - }, + "https://fedoraproject.org/wiki/Licensing/MakeIndex", + }, IsOsiApproved: false, }, "bsd-2-clause-netbsd": { - Reference: "https://spdx.org/licenses/BSD-2-Clause-NetBSD.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/UCL-1.0", + }, IsOsiApproved: true, }, "nasa-1.3": { - Reference: "https://spdx.org/licenses/NASA-1.3.html", + 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", + 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", - }, + "https://opensource.org/licenses/NASA-1.3", + }, IsOsiApproved: true, }, "ijg": { - Reference: "https://spdx.org/licenses/IJG.html", + 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", + 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", - }, + "http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2", + }, IsOsiApproved: false, }, "xfig": { - Reference: "https://spdx.org/licenses/Xfig.html", + Reference: "https://spdx.org/licenses/Xfig.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Xfig.json", - ReferenceNumber: 148, - Name: "Xfig License", - LicenseID: "Xfig", + 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", - }, + "https://sourceforge.net/p/mcj/xfig/ci/master/tree/src/Makefile.am", + }, IsOsiApproved: false, }, "noweb": { - Reference: "https://spdx.org/licenses/Noweb.html", + Reference: "https://spdx.org/licenses/Noweb.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Noweb.json", - ReferenceNumber: 149, - Name: "Noweb License", - LicenseID: "Noweb", + DetailsURL: "https://spdx.org/licenses/Noweb.json", + ReferenceNumber: 149, + Name: "Noweb License", + LicenseID: "Noweb", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Noweb", - }, + "https://fedoraproject.org/wiki/Licensing/Noweb", + }, IsOsiApproved: false, }, "mup": { - Reference: "https://spdx.org/licenses/Mup.html", + Reference: "https://spdx.org/licenses/Mup.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Mup.json", - ReferenceNumber: 150, - Name: "Mup License", - LicenseID: "Mup", + DetailsURL: "https://spdx.org/licenses/Mup.json", + ReferenceNumber: 150, + Name: "Mup License", + LicenseID: "Mup", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Mup", - }, + "https://fedoraproject.org/wiki/Licensing/Mup", + }, IsOsiApproved: false, }, "cc-by-2.0": { - Reference: "https://spdx.org/licenses/CC-BY-2.0.html", + 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", + 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", - }, + "https://creativecommons.org/licenses/by/2.0/legalcode", + }, IsOsiApproved: false, }, "odc-by-1.0": { - Reference: "https://spdx.org/licenses/ODC-By-1.0.html", + 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", + 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/", - }, + "https://opendatacommons.org/licenses/by/1.0/", + }, IsOsiApproved: false, }, "blessing": { - Reference: "https://spdx.org/licenses/blessing.html", + Reference: "https://spdx.org/licenses/blessing.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/blessing.json", - ReferenceNumber: 153, - Name: "SQLite Blessing", - LicenseID: "blessing", + 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", - }, + "https://sqlite.org/src/artifact/df5091916dbb40e6", + }, IsOsiApproved: false, }, "ssh-openssh": { - Reference: "https://spdx.org/licenses/SSH-OpenSSH.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by-nc/2.0/legalcode", + }, IsOsiApproved: false, }, "lppl-1.2": { - Reference: "https://spdx.org/licenses/LPPL-1.2.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html", + }, IsOsiApproved: false, }, "tpl-1.0": { - Reference: "https://spdx.org/licenses/TPL-1.0.html", + 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", + 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", - }, + "https://fedoraproject.org/wiki/Licensing:ThorPublicLicense", + }, IsOsiApproved: false, }, "lsof": { - Reference: "https://spdx.org/licenses/lsof.html", + Reference: "https://spdx.org/licenses/lsof.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/lsof.json", - ReferenceNumber: 162, - Name: "lsof License", - LicenseID: "lsof", + 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", - }, + "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", + 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", + 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", - }, + "http://www.affero.org/oagpl.html", + }, IsOsiApproved: false, }, "mitnfa": { - Reference: "https://spdx.org/licenses/MITNFA.html", + 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", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/MITNFA", + }, IsOsiApproved: false, }, "metamail": { - Reference: "https://spdx.org/licenses/metamail.html", + Reference: "https://spdx.org/licenses/metamail.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/metamail.json", - ReferenceNumber: 165, - Name: "metamail License", - LicenseID: "metamail", + 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", - }, + "https://github.com/Dual-Life/mime-base64/blob/master/Base64.xs#L12", + }, IsOsiApproved: false, }, "imlib2": { - Reference: "https://spdx.org/licenses/Imlib2.html", + Reference: "https://spdx.org/licenses/Imlib2.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Imlib2.json", - ReferenceNumber: 166, - Name: "Imlib2 License", - LicenseID: "Imlib2", + 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", - }, + "https://git.enlightenment.org/legacy/imlib2.git/tree/COPYING", + }, IsOsiApproved: false, }, "afl-2.0": { - Reference: "https://spdx.org/licenses/AFL-2.0.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "http://ec.europa.eu/idabc/servlets/Doc027f.pdf?id=31096", + }, IsOsiApproved: false, }, "aal": { - Reference: "https://spdx.org/licenses/AAL.html", + Reference: "https://spdx.org/licenses/AAL.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/AAL.json", - ReferenceNumber: 169, - Name: "Attribution Assurance License", - LicenseID: "AAL", + DetailsURL: "https://spdx.org/licenses/AAL.json", + ReferenceNumber: 169, + Name: "Attribution Assurance License", + LicenseID: "AAL", SeeAlso: []string{ - "https://opensource.org/licenses/attribution", - }, + "https://opensource.org/licenses/attribution", + }, IsOsiApproved: true, }, "ssh-keyscan": { - Reference: "https://spdx.org/licenses/ssh-keyscan.html", + 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", + 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", - }, + "https://github.com/openssh/openssh-portable/blob/master/LICENCE#L82", + }, IsOsiApproved: false, }, "soundex": { - Reference: "https://spdx.org/licenses/Soundex.html", + Reference: "https://spdx.org/licenses/Soundex.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Soundex.json", - ReferenceNumber: 171, - Name: "Soundex License", - LicenseID: "Soundex", + 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", - }, + "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", + 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", + 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", - }, + "http://www.w3.org/Consortium/Legal/copyright-software-19980720.html", + }, IsOsiApproved: false, }, "w3c": { - Reference: "https://spdx.org/licenses/W3C.html", + 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", + 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", - }, + "https://opensource.org/licenses/W3C", + }, IsOsiApproved: true, }, "bittorrent-1.1": { - Reference: "https://spdx.org/licenses/BitTorrent-1.1.html", + 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", + 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", - }, + "http://directory.fsf.org/wiki/License:BitTorrentOSL1.1", + }, IsOsiApproved: false, }, "gpl-1.0+": { - Reference: "https://spdx.org/licenses/GPL-1.0+.html", + 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+", + 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", - }, + "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + }, IsOsiApproved: false, }, "spencer-99": { - Reference: "https://spdx.org/licenses/Spencer-99.html", + 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", + 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", - }, + "http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c", + }, IsOsiApproved: false, }, "sleepycat": { - Reference: "https://spdx.org/licenses/Sleepycat.html", + Reference: "https://spdx.org/licenses/Sleepycat.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Sleepycat.json", - ReferenceNumber: 177, - Name: "Sleepycat License", - LicenseID: "Sleepycat", + DetailsURL: "https://spdx.org/licenses/Sleepycat.json", + ReferenceNumber: 177, + Name: "Sleepycat License", + LicenseID: "Sleepycat", SeeAlso: []string{ - "https://opensource.org/licenses/Sleepycat", - }, + "https://opensource.org/licenses/Sleepycat", + }, IsOsiApproved: true, }, "dl-de-zero-2.0": { - Reference: "https://spdx.org/licenses/DL-DE-ZERO-2.0.html", + 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", + 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", - }, + "https://www.govdata.de/dl-de/zero-2-0", + }, IsOsiApproved: false, }, "bsd-3-clause": { - Reference: "https://spdx.org/licenses/BSD-3-Clause.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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/", - }, + "https://solderpad.org/licenses/SHL-0.51/", + }, IsOsiApproved: false, }, "lgpl-2.1-only": { - Reference: "https://spdx.org/licenses/LGPL-2.1-only.html", + 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", + 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", - }, + "https://opensource.org/licenses/LGPL-2.1", + }, IsOsiApproved: true, }, "parity-6.0.0": { - Reference: "https://spdx.org/licenses/Parity-6.0.0.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://www.gnu.org/licenses/autoconf-exception-3.0.html", + }, IsOsiApproved: false, }, "mit-0": { - Reference: "https://spdx.org/licenses/MIT-0.html", + 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", + 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", - }, + "https://github.com/awsdocs/aws-cloud9-user-guide/blob/master/LICENSE-SAMPLECODE", + }, IsOsiApproved: true, }, "cc-pddc": { - Reference: "https://spdx.org/licenses/CC-PDDC.html", + 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", + 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/", - }, + "https://creativecommons.org/licenses/publicdomain/", + }, IsOsiApproved: false, }, "ulem": { - Reference: "https://spdx.org/licenses/ulem.html", + Reference: "https://spdx.org/licenses/ulem.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/ulem.json", - ReferenceNumber: 187, - Name: "ulem License", - LicenseID: "ulem", + 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", - }, + "https://mirrors.ctan.org/macros/latex/contrib/ulem/README", + }, IsOsiApproved: false, }, "xinetd": { - Reference: "https://spdx.org/licenses/xinetd.html", + Reference: "https://spdx.org/licenses/xinetd.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/xinetd.json", - ReferenceNumber: 188, - Name: "xinetd License", - LicenseID: "xinetd", + DetailsURL: "https://spdx.org/licenses/xinetd.json", + ReferenceNumber: 188, + Name: "xinetd License", + LicenseID: "xinetd", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Xinetd_License", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "http://www.openldap.org/software/release/license.html", + }, IsOsiApproved: true, }, "oml": { - Reference: "https://spdx.org/licenses/OML.html", + Reference: "https://spdx.org/licenses/OML.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/OML.json", - ReferenceNumber: 191, - Name: "Open Market License", - LicenseID: "OML", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/Open_Market_License", + }, IsOsiApproved: false, }, "icu": { - Reference: "https://spdx.org/licenses/ICU.html", + Reference: "https://spdx.org/licenses/ICU.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/ICU.json", - ReferenceNumber: 192, - Name: "ICU License", - LicenseID: "ICU", + 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", - }, + "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", + 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", + 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", - }, + "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf", + }, IsOsiApproved: false, }, "antlr-pd-fallback": { - Reference: "https://spdx.org/licenses/ANTLR-PD-fallback.html", + 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", + 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", - }, + "http://www.antlr2.org/license.html", + }, IsOsiApproved: false, }, "dvipdfm": { - Reference: "https://spdx.org/licenses/dvipdfm.html", + Reference: "https://spdx.org/licenses/dvipdfm.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/dvipdfm.json", - ReferenceNumber: 195, - Name: "dvipdfm License", - LicenseID: "dvipdfm", + DetailsURL: "https://spdx.org/licenses/dvipdfm.json", + ReferenceNumber: 195, + Name: "dvipdfm License", + LicenseID: "dvipdfm", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/dvipdfm", - }, + "https://fedoraproject.org/wiki/Licensing/dvipdfm", + }, IsOsiApproved: false, }, "gpl-3.0+": { - Reference: "https://spdx.org/licenses/GPL-3.0+.html", + 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+", + 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", - }, + "https://opensource.org/licenses/GPL-3.0", + }, IsOsiApproved: true, }, "epl-2.0": { - Reference: "https://spdx.org/licenses/EPL-2.0.html", + 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", + 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", - }, + "https://www.opensource.org/licenses/EPL-2.0", + }, IsOsiApproved: true, }, "oldap-1.3": { - Reference: "https://spdx.org/licenses/OLDAP-1.3.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/OFL-1.1", + }, IsOsiApproved: true, }, "isc": { - Reference: "https://spdx.org/licenses/ISC.html", + Reference: "https://spdx.org/licenses/ISC.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/ISC.json", - ReferenceNumber: 201, - Name: "ISC License", - LicenseID: "ISC", + 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", - }, + "https://opensource.org/licenses/ISC", + }, IsOsiApproved: true, }, "gfdl-1.1-invariants-only": { - Reference: "https://spdx.org/licenses/GFDL-1.1-invariants-only.html", + 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", + 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", - }, + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", + }, IsOsiApproved: false, }, "adobe-2006": { - Reference: "https://spdx.org/licenses/Adobe-2006.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by-nd-nc/1.0/legalcode", + }, IsOsiApproved: false, }, "dsdp": { - Reference: "https://spdx.org/licenses/DSDP.html", + Reference: "https://spdx.org/licenses/DSDP.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/DSDP.json", - ReferenceNumber: 205, - Name: "DSDP License", - LicenseID: "DSDP", + DetailsURL: "https://spdx.org/licenses/DSDP.json", + ReferenceNumber: 205, + Name: "DSDP License", + LicenseID: "DSDP", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/DSDP", - }, + "https://fedoraproject.org/wiki/Licensing/DSDP", + }, IsOsiApproved: false, }, "d-fsl-1.0": { - Reference: "https://spdx.org/licenses/D-FSL-1.0.html", + 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", + 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", @@ -2556,4819 +2556,4818 @@ var index = map[string]SPDXLicense{ "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", - }, + "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", + 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", + 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/", - }, + "https://solderpad.org/licenses/SHL-0.5/", + }, IsOsiApproved: false, }, "schemereport": { - Reference: "https://spdx.org/licenses/SchemeReport.html", + 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, + 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", + 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", + 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", - }, + "https://github.com/yuwenlong/longphp/blob/25dfb70cc2a466dc4bb55ba30901cbce08d164b5/LICENSE", + }, IsOsiApproved: false, }, "ntp": { - Reference: "https://spdx.org/licenses/NTP.html", + Reference: "https://spdx.org/licenses/NTP.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/NTP.json", - ReferenceNumber: 210, - Name: "NTP License", - LicenseID: "NTP", + DetailsURL: "https://spdx.org/licenses/NTP.json", + ReferenceNumber: 210, + Name: "NTP License", + LicenseID: "NTP", SeeAlso: []string{ - "https://opensource.org/licenses/NTP", - }, + "https://opensource.org/licenses/NTP", + }, IsOsiApproved: true, }, "jam": { - Reference: "https://spdx.org/licenses/Jam.html", + Reference: "https://spdx.org/licenses/Jam.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Jam.json", - ReferenceNumber: 211, - Name: "Jam License", - LicenseID: "Jam", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution", + }, IsOsiApproved: false, }, "lucida-bitmap-fonts": { - Reference: "https://spdx.org/licenses/Lucida-Bitmap-Fonts.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/CUA-OPL-1.0", + }, IsOsiApproved: true, }, "bsd-2-clause": { - Reference: "https://spdx.org/licenses/BSD-2-Clause.html", + 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", + 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", - }, + "https://opensource.org/licenses/BSD-2-Clause", + }, IsOsiApproved: true, }, "community-spec-1.0": { - Reference: "https://spdx.org/licenses/Community-Spec-1.0.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + Reference: "https://spdx.org/licenses/diffmark.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/diffmark.json", - ReferenceNumber: 220, - Name: "diffmark license", - LicenseID: "diffmark", + DetailsURL: "https://spdx.org/licenses/diffmark.json", + ReferenceNumber: 220, + Name: "diffmark license", + LicenseID: "diffmark", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/diffmark", - }, + "https://fedoraproject.org/wiki/Licensing/diffmark", + }, IsOsiApproved: false, }, "abstyles": { - Reference: "https://spdx.org/licenses/Abstyles.html", + Reference: "https://spdx.org/licenses/Abstyles.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Abstyles.json", - ReferenceNumber: 221, - Name: "Abstyles License", - LicenseID: "Abstyles", + DetailsURL: "https://spdx.org/licenses/Abstyles.json", + ReferenceNumber: 221, + Name: "Abstyles License", + LicenseID: "Abstyles", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Abstyles", - }, + "https://fedoraproject.org/wiki/Licensing/Abstyles", + }, IsOsiApproved: false, }, "zeeff": { - Reference: "https://spdx.org/licenses/Zeeff.html", + Reference: "https://spdx.org/licenses/Zeeff.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Zeeff.json", - ReferenceNumber: 222, - Name: "Zeeff License", - LicenseID: "Zeeff", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://docubrain.com/sites/default/files/licenses/bitstream-vera.html", + }, IsOsiApproved: false, }, "naumen": { - Reference: "https://spdx.org/licenses/Naumen.html", + Reference: "https://spdx.org/licenses/Naumen.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Naumen.json", - ReferenceNumber: 225, - Name: "Naumen Public License", - LicenseID: "Naumen", + DetailsURL: "https://spdx.org/licenses/Naumen.json", + ReferenceNumber: 225, + Name: "Naumen Public License", + LicenseID: "Naumen", SeeAlso: []string{ - "https://opensource.org/licenses/Naumen", - }, + "https://opensource.org/licenses/Naumen", + }, IsOsiApproved: true, }, "sgi-opengl": { - Reference: "https://spdx.org/licenses/SGI-OpenGL.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by-nd/4.0/legalcode", + }, IsOsiApproved: false, }, "mit-wu": { - Reference: "https://spdx.org/licenses/MIT-Wu.html", + 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", + 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", - }, + "https://github.com/chromium/octane/blob/master/crypto.js", + }, IsOsiApproved: false, }, "gnuplot": { - Reference: "https://spdx.org/licenses/gnuplot.html", + Reference: "https://spdx.org/licenses/gnuplot.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/gnuplot.json", - ReferenceNumber: 230, - Name: "gnuplot License", - LicenseID: "gnuplot", + DetailsURL: "https://spdx.org/licenses/gnuplot.json", + ReferenceNumber: 230, + Name: "gnuplot License", + LicenseID: "gnuplot", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Gnuplot", - }, + "https://fedoraproject.org/wiki/Licensing/Gnuplot", + }, IsOsiApproved: false, }, "sax-pd": { - Reference: "https://spdx.org/licenses/SAX-PD.html", + 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", + 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", - }, + "http://www.saxproject.org/copying.html", + }, IsOsiApproved: false, }, "hpnd-doc-sell": { - Reference: "https://spdx.org/licenses/HPND-doc-sell.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://github.com/bleargh45/Data-UUID/blob/master/LICENSE", + }, IsOsiApproved: false, }, "oclc-2.0": { - Reference: "https://spdx.org/licenses/OCLC-2.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/OCLC-2.0", + }, IsOsiApproved: true, }, "ms-lpl": { - Reference: "https://spdx.org/licenses/MS-LPL.html", + 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", + 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)", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", + }, IsOsiApproved: false, }, "json": { - Reference: "https://spdx.org/licenses/JSON.html", + Reference: "https://spdx.org/licenses/JSON.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/JSON.json", - ReferenceNumber: 239, - Name: "JSON License", - LicenseID: "JSON", + DetailsURL: "https://spdx.org/licenses/JSON.json", + ReferenceNumber: 239, + Name: "JSON License", + LicenseID: "JSON", SeeAlso: []string{ - "http://www.json.org/license.html", - }, + "http://www.json.org/license.html", + }, IsOsiApproved: false, }, "checkmk": { - Reference: "https://spdx.org/licenses/checkmk.html", + Reference: "https://spdx.org/licenses/checkmk.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/checkmk.json", - ReferenceNumber: 240, - Name: "Checkmk License", - LicenseID: "checkmk", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode", + }, IsOsiApproved: false, }, "graphics-gems": { - Reference: "https://spdx.org/licenses/Graphics-Gems.html", + 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", + 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", - }, + "https://github.com/erich666/GraphicsGems/blob/master/LICENSE.md", + }, IsOsiApproved: false, }, "gd": { - Reference: "https://spdx.org/licenses/GD.html", + Reference: "https://spdx.org/licenses/GD.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/GD.json", - ReferenceNumber: 243, - Name: "GD License", - LicenseID: "GD", + 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", - }, + "https://libgd.github.io/manuals/2.3.0/files/license-txt.html", + }, IsOsiApproved: false, }, "0bsd": { - Reference: "https://spdx.org/licenses/0BSD.html", + 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", + 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", - }, + "https://opensource.org/licenses/0BSD", + }, IsOsiApproved: true, }, "lgpl-2.1+": { - Reference: "https://spdx.org/licenses/LGPL-2.1+.html", + 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+", + 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", - }, + "https://opensource.org/licenses/LGPL-2.1", + }, IsOsiApproved: true, }, "mit": { - Reference: "https://spdx.org/licenses/MIT.html", + Reference: "https://spdx.org/licenses/MIT.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/MIT.json", - ReferenceNumber: 246, - Name: "MIT License", - LicenseID: "MIT", + DetailsURL: "https://spdx.org/licenses/MIT.json", + ReferenceNumber: 246, + Name: "MIT License", + LicenseID: "MIT", SeeAlso: []string{ - "https://opensource.org/licenses/MIT", - }, + "https://opensource.org/licenses/MIT", + }, IsOsiApproved: true, }, "occt-pl": { - Reference: "https://spdx.org/licenses/OCCT-PL.html", + 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", + 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", - }, + "http://www.opencascade.com/content/occt-public-license", + }, IsOsiApproved: false, }, "lgpl-3.0-only": { - Reference: "https://spdx.org/licenses/LGPL-3.0-only.html", + 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", + 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", - }, + "https://opensource.org/licenses/LGPL-3.0", + }, IsOsiApproved: true, }, "adacore-doc": { - Reference: "https://spdx.org/licenses/AdaCore-doc.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by-nc/3.0/legalcode", + }, IsOsiApproved: false, }, "spencer-94": { - Reference: "https://spdx.org/licenses/Spencer-94.html", + 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", + 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", - }, + "https://metacpan.org/release/KNOK/File-MMagic-1.30/source/COPYING#L28", + }, IsOsiApproved: false, }, "htmltidy": { - Reference: "https://spdx.org/licenses/HTMLTIDY.html", + Reference: "https://spdx.org/licenses/HTMLTIDY.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/HTMLTIDY.json", - ReferenceNumber: 252, - Name: "HTML Tidy License", - LicenseID: "HTMLTIDY", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + Reference: "https://spdx.org/licenses/Giftware.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Giftware.json", - ReferenceNumber: 255, - Name: "Giftware License", - LicenseID: "Giftware", + 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", - }, + "http://liballeg.org/license.html#allegro-4-the-giftware-license", + }, IsOsiApproved: false, }, "mpl-1.1": { - Reference: "https://spdx.org/licenses/MPL-1.1.html", + 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", + 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", - }, + "https://opensource.org/licenses/MPL-1.1", + }, IsOsiApproved: true, }, "ogdl-taiwan-1.0": { - Reference: "https://spdx.org/licenses/OGDL-Taiwan-1.0.html", + 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", + 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", - }, + "https://data.gov.tw/license", + }, IsOsiApproved: false, }, "oldap-2.7": { - Reference: "https://spdx.org/licenses/OLDAP-2.7.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "http://www.faqs.org/rfcs/rfc1321.html", + }, IsOsiApproved: false, }, "ferguson-twofish": { - Reference: "https://spdx.org/licenses/Ferguson-Twofish.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + Reference: "https://spdx.org/licenses/Glulxe.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Glulxe.json", - ReferenceNumber: 265, - Name: "Glulxe License", - LicenseID: "Glulxe", + DetailsURL: "https://spdx.org/licenses/Glulxe.json", + ReferenceNumber: 265, + Name: "Glulxe License", + LicenseID: "Glulxe", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Glulxe", - }, + "https://fedoraproject.org/wiki/Licensing/Glulxe", + }, IsOsiApproved: false, }, "postgresql": { - Reference: "https://spdx.org/licenses/PostgreSQL.html", + Reference: "https://spdx.org/licenses/PostgreSQL.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/PostgreSQL.json", - ReferenceNumber: 266, - Name: "PostgreSQL License", - LicenseID: "PostgreSQL", + 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", - }, + "https://opensource.org/licenses/PostgreSQL", + }, IsOsiApproved: true, }, "fair": { - Reference: "https://spdx.org/licenses/Fair.html", + Reference: "https://spdx.org/licenses/Fair.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Fair.json", - ReferenceNumber: 267, - Name: "Fair License", - LicenseID: "Fair", + DetailsURL: "https://spdx.org/licenses/Fair.json", + ReferenceNumber: 267, + Name: "Fair License", + LicenseID: "Fair", SeeAlso: []string{ "http://fairlicense.org/", - "https://opensource.org/licenses/Fair", - }, + "https://opensource.org/licenses/Fair", + }, IsOsiApproved: true, }, "apsl-1.0": { - Reference: "https://spdx.org/licenses/APSL-1.0.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://cgit.freedesktop.org/libbsd/tree/man/setproctitle.3bsd", + }, IsOsiApproved: false, }, "scea": { - Reference: "https://spdx.org/licenses/SCEA.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://github.com/greymass/swift-eosio/blob/master/LICENSE", + }, IsOsiApproved: false, }, "xnet": { - Reference: "https://spdx.org/licenses/Xnet.html", + Reference: "https://spdx.org/licenses/Xnet.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Xnet.json", - ReferenceNumber: 273, - Name: "X.Net License", - LicenseID: "Xnet", + DetailsURL: "https://spdx.org/licenses/Xnet.json", + ReferenceNumber: 273, + Name: "X.Net License", + LicenseID: "Xnet", SeeAlso: []string{ - "https://opensource.org/licenses/Xnet", - }, + "https://opensource.org/licenses/Xnet", + }, IsOsiApproved: true, }, "mit-feh": { - Reference: "https://spdx.org/licenses/MIT-feh.html", + 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", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/MIT#feh", + }, IsOsiApproved: false, }, "agpl-1.0-only": { - Reference: "https://spdx.org/licenses/AGPL-1.0-only.html", + 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", + 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", - }, + "http://www.affero.org/oagpl.html", + }, IsOsiApproved: false, }, "nokia": { - Reference: "https://spdx.org/licenses/Nokia.html", + 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", + DetailsURL: "https://spdx.org/licenses/Nokia.json", + ReferenceNumber: 276, + Name: "Nokia Open Source License", + LicenseID: "Nokia", SeeAlso: []string{ - "https://opensource.org/licenses/nokia", - }, + "https://opensource.org/licenses/nokia", + }, IsOsiApproved: true, }, "cornell-lossless-jpeg": { - Reference: "https://spdx.org/licenses/Cornell-Lossless-JPEG.html", + 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", + 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", - }, + "https://gitlab.freedesktop.org/libopenraw/libopenraw/blob/master/lib/ljpegdecompressor.cpp#L32", + }, IsOsiApproved: false, }, "swrule": { - Reference: "https://spdx.org/licenses/swrule.html", + Reference: "https://spdx.org/licenses/swrule.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/swrule.json", - ReferenceNumber: 278, - Name: "swrule License", - LicenseID: "swrule", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/EPL-1.0", + }, IsOsiApproved: true, }, "xfree86-1.1": { - Reference: "https://spdx.org/licenses/XFree86-1.1.html", + 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", + 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", - }, + "http://www.xfree86.org/current/LICENSE4.html", + }, IsOsiApproved: false, }, "ucar": { - Reference: "https://spdx.org/licenses/UCAR.html", + Reference: "https://spdx.org/licenses/UCAR.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/UCAR.json", - ReferenceNumber: 283, - Name: "UCAR License", - LicenseID: "UCAR", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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/", - }, + "https://sourceforge.net/p/xmedcon/code/ci/master/tree/libs/ljpg/", + }, IsOsiApproved: false, }, "plexus": { - Reference: "https://spdx.org/licenses/Plexus.html", + Reference: "https://spdx.org/licenses/Plexus.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Plexus.json", - ReferenceNumber: 286, - Name: "Plexus Classworlds License", - LicenseID: "Plexus", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License", + }, IsOsiApproved: false, }, "apache-1.1": { - Reference: "https://spdx.org/licenses/Apache-1.1.html", + 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", + 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", - }, + "https://opensource.org/licenses/Apache-1.1", + }, IsOsiApproved: true, }, "upl-1.0": { - Reference: "https://spdx.org/licenses/UPL-1.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/UPL", + }, IsOsiApproved: true, }, "hpnd-dec": { - Reference: "https://spdx.org/licenses/HPND-DEC.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://doc.qt.io/archives/3.3/license.html", + }, IsOsiApproved: true, }, "libpng-2.0": { - Reference: "https://spdx.org/licenses/libpng-2.0.html", + 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", + 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", - }, + "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt", + }, IsOsiApproved: false, }, "zlib": { - Reference: "https://spdx.org/licenses/Zlib.html", + Reference: "https://spdx.org/licenses/Zlib.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Zlib.json", - ReferenceNumber: 294, - Name: "zlib License", - LicenseID: "Zlib", + 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", - }, + "https://opensource.org/licenses/Zlib", + }, IsOsiApproved: true, }, "gfdl-1.3-or-later": { - Reference: "https://spdx.org/licenses/GFDL-1.3-or-later.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "http://www.sugarcrm.com/crm/SPL", + }, IsOsiApproved: false, }, "vsl-1.0": { - Reference: "https://spdx.org/licenses/VSL-1.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/VSL-1.0", + }, IsOsiApproved: true, }, "nrl": { - Reference: "https://spdx.org/licenses/NRL.html", + Reference: "https://spdx.org/licenses/NRL.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/NRL.json", - ReferenceNumber: 299, - Name: "NRL License", - LicenseID: "NRL", + DetailsURL: "https://spdx.org/licenses/NRL.json", + ReferenceNumber: 299, + Name: "NRL License", + LicenseID: "NRL", SeeAlso: []string{ - "http://web.mit.edu/network/isakmp/nrllicense.html", - }, + "http://web.mit.edu/network/isakmp/nrllicense.html", + }, IsOsiApproved: false, }, "zend-2.0": { - Reference: "https://spdx.org/licenses/Zend-2.0.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://open.canada.ca/en/open-government-licence-canada", + }, IsOsiApproved: false, }, "eudatagrid": { - Reference: "https://spdx.org/licenses/EUDatagrid.html", + 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", + 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", - }, + "https://opensource.org/licenses/EUDatagrid", + }, IsOsiApproved: true, }, "nunit": { - Reference: "https://spdx.org/licenses/Nunit.html", + Reference: "https://spdx.org/licenses/Nunit.html", IsDeprecatedLicenseID: true, - DetailsURL: "https://spdx.org/licenses/Nunit.json", - ReferenceNumber: 303, - Name: "Nunit License", - LicenseID: "Nunit", + DetailsURL: "https://spdx.org/licenses/Nunit.json", + ReferenceNumber: 303, + Name: "Nunit License", + LicenseID: "Nunit", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Nunit", - }, + "https://fedoraproject.org/wiki/Licensing/Nunit", + }, IsOsiApproved: false, }, "mulanpsl-2.0": { - Reference: "https://spdx.org/licenses/MulanPSL-2.0.html", + 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", + 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/", - }, + "https://license.coscl.org.cn/MulanPSL2/", + }, IsOsiApproved: true, }, "newsletr": { - Reference: "https://spdx.org/licenses/Newsletr.html", + Reference: "https://spdx.org/licenses/Newsletr.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Newsletr.json", - ReferenceNumber: 305, - Name: "Newsletr License", - LicenseID: "Newsletr", + DetailsURL: "https://spdx.org/licenses/Newsletr.json", + ReferenceNumber: 305, + Name: "Newsletr License", + LicenseID: "Newsletr", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Newsletr", - }, + "https://fedoraproject.org/wiki/Licensing/Newsletr", + }, IsOsiApproved: false, }, "bsd-4-clause-uc": { - Reference: "https://spdx.org/licenses/BSD-4-Clause-UC.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://polyformproject.org/licenses/small-business/1.0.0", + }, IsOsiApproved: false, }, "miros": { - Reference: "https://spdx.org/licenses/MirOS.html", + Reference: "https://spdx.org/licenses/MirOS.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/MirOS.json", - ReferenceNumber: 308, - Name: "The MirOS Licence", - LicenseID: "MirOS", + DetailsURL: "https://spdx.org/licenses/MirOS.json", + ReferenceNumber: 308, + Name: "The MirOS Licence", + LicenseID: "MirOS", SeeAlso: []string{ - "https://opensource.org/licenses/MirOS", - }, + "https://opensource.org/licenses/MirOS", + }, IsOsiApproved: true, }, "adobe-utopia": { - Reference: "https://spdx.org/licenses/Adobe-Utopia.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/RPL-1.5", + }, IsOsiApproved: true, }, "tmate": { - Reference: "https://spdx.org/licenses/TMate.html", + 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", + DetailsURL: "https://spdx.org/licenses/TMate.json", + ReferenceNumber: 312, + Name: "TMate Open Source License", + LicenseID: "TMate", SeeAlso: []string{ - "http://svnkit.com/license.html", - }, + "http://svnkit.com/license.html", + }, IsOsiApproved: false, }, "libtiff": { - Reference: "https://spdx.org/licenses/libtiff.html", + Reference: "https://spdx.org/licenses/libtiff.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/libtiff.json", - ReferenceNumber: 313, - Name: "libtiff License", - LicenseID: "libtiff", + DetailsURL: "https://spdx.org/licenses/libtiff.json", + ReferenceNumber: 313, + Name: "libtiff License", + LicenseID: "libtiff", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/libtiff", - }, + "https://fedoraproject.org/wiki/Licensing/libtiff", + }, IsOsiApproved: false, }, "gpl-3.0-only": { - Reference: "https://spdx.org/licenses/GPL-3.0-only.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by-sa/3.0/legalcode", + }, IsOsiApproved: false, }, "unicode-dfs-2016": { - Reference: "https://spdx.org/licenses/Unicode-DFS-2016.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by-nc/3.0/de/legalcode", + }, IsOsiApproved: false, }, "npl-1.0": { - Reference: "https://spdx.org/licenses/NPL-1.0.html", + 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", + 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/", - }, + "http://www.mozilla.org/MPL/NPL/1.0/", + }, IsOsiApproved: false, }, "egenix": { - Reference: "https://spdx.org/licenses/eGenix.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://polyformproject.org/licenses/noncommercial/1.0.0", + }, IsOsiApproved: false, }, "crossword": { - Reference: "https://spdx.org/licenses/Crossword.html", + Reference: "https://spdx.org/licenses/Crossword.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Crossword.json", - ReferenceNumber: 321, - Name: "Crossword License", - LicenseID: "Crossword", + DetailsURL: "https://spdx.org/licenses/Crossword.json", + ReferenceNumber: 321, + Name: "Crossword License", + LicenseID: "Crossword", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Crossword", - }, + "https://fedoraproject.org/wiki/Licensing/Crossword", + }, IsOsiApproved: false, }, "iec-code-components-eula": { - Reference: "https://spdx.org/licenses/IEC-Code-Components-EULA.html", + 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", + 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", - }, + "https://www.iec.ch/copyright", + }, IsOsiApproved: false, }, "hpnd": { - Reference: "https://spdx.org/licenses/HPND.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/EFL-1.0", + }, IsOsiApproved: true, }, "oldap-1.4": { - Reference: "https://spdx.org/licenses/OLDAP-1.4.html", + 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", + 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", - }, + "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", + Reference: "https://spdx.org/licenses/MMIXware.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/MMIXware.json", - ReferenceNumber: 326, - Name: "MMIXware License", - LicenseID: "MMIXware", + 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", - }, + "https://gitlab.lrz.de/mmix/mmixware/-/blob/master/boilerplate.w", + }, IsOsiApproved: false, }, "openpbs-2.3": { - Reference: "https://spdx.org/licenses/OpenPBS-2.3.html", + 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", + 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", - }, + "https://www.mcs.anl.gov/research/projects/openpbs/PBS_License.txt", + }, IsOsiApproved: false, }, "unicode-tou": { - Reference: "https://spdx.org/licenses/Unicode-TOU.html", + 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", + 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", - }, + "http://www.unicode.org/copyright.html", + }, IsOsiApproved: false, }, "cc-by-3.0-de": { - Reference: "https://spdx.org/licenses/CC-BY-3.0-DE.html", + 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", + 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", - }, + "https://creativecommons.org/licenses/by/3.0/de/legalcode", + }, IsOsiApproved: false, }, "eupl-1.1": { - Reference: "https://spdx.org/licenses/EUPL-1.1.html", + 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", + 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", - }, + "https://opensource.org/licenses/EUPL-1.1", + }, IsOsiApproved: true, }, "sl": { - Reference: "https://spdx.org/licenses/SL.html", + Reference: "https://spdx.org/licenses/SL.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/SL.json", - ReferenceNumber: 331, - Name: "SL License", - LicenseID: "SL", + DetailsURL: "https://spdx.org/licenses/SL.json", + ReferenceNumber: 331, + Name: "SL License", + LicenseID: "SL", SeeAlso: []string{ - "https://github.com/mtoyoda/sl/blob/master/LICENSE", - }, + "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", + 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", + 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", - }, + "https://www.gnu.org/licenses/gpl-faq.html#FontException", + }, IsOsiApproved: false, }, "motosoto": { - Reference: "https://spdx.org/licenses/Motosoto.html", + Reference: "https://spdx.org/licenses/Motosoto.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Motosoto.json", - ReferenceNumber: 333, - Name: "Motosoto License", - LicenseID: "Motosoto", + DetailsURL: "https://spdx.org/licenses/Motosoto.json", + ReferenceNumber: 333, + Name: "Motosoto License", + LicenseID: "Motosoto", SeeAlso: []string{ - "https://opensource.org/licenses/Motosoto", - }, + "https://opensource.org/licenses/Motosoto", + }, IsOsiApproved: true, }, "caldera": { - Reference: "https://spdx.org/licenses/Caldera.html", + Reference: "https://spdx.org/licenses/Caldera.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Caldera.json", - ReferenceNumber: 334, - Name: "Caldera License", - LicenseID: "Caldera", + 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", - }, + "http://www.lemis.com/grog/UNIX/ancient-source-all.pdf", + }, IsOsiApproved: false, }, "gpl-2.0": { - Reference: "https://spdx.org/licenses/GPL-2.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/GPL-2.0", + }, IsOsiApproved: true, }, "bsd-inferno-nettverk": { - Reference: "https://spdx.org/licenses/BSD-Inferno-Nettverk.html", + 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", + 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", - }, + "https://www.inet.no/dante/LICENSE", + }, IsOsiApproved: false, }, "gfdl-1.1": { - Reference: "https://spdx.org/licenses/GFDL-1.1.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "http://www.netlib.org/lapack/LICENSE.txt", + }, IsOsiApproved: false, }, "cc-by-1.0": { - Reference: "https://spdx.org/licenses/CC-BY-1.0.html", + 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", + 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", - }, + "https://creativecommons.org/licenses/by/1.0/legalcode", + }, IsOsiApproved: false, }, "php-3.01": { - Reference: "https://spdx.org/licenses/PHP-3.01.html", + 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", + 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", - }, + "http://www.php.net/license/3_01.txt", + }, IsOsiApproved: true, }, "padl": { - Reference: "https://spdx.org/licenses/PADL.html", + Reference: "https://spdx.org/licenses/PADL.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/PADL.json", - ReferenceNumber: 344, - Name: "PADL License", - LicenseID: "PADL", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://github.com/westes/flex/blob/master/COPYING", + }, IsOsiApproved: false, }, "odbl-1.0": { - Reference: "https://spdx.org/licenses/ODbL-1.0.html", + 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", + 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/", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://github.com/python/cpython/blob/main/LICENSE", + }, IsOsiApproved: false, }, "ipa": { - Reference: "https://spdx.org/licenses/IPA.html", + Reference: "https://spdx.org/licenses/IPA.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/IPA.json", - ReferenceNumber: 351, - Name: "IPA Font License", - LicenseID: "IPA", + DetailsURL: "https://spdx.org/licenses/IPA.json", + ReferenceNumber: 351, + Name: "IPA Font License", + LicenseID: "IPA", SeeAlso: []string{ - "https://opensource.org/licenses/IPA", - }, + "https://opensource.org/licenses/IPA", + }, IsOsiApproved: true, }, "aml": { - Reference: "https://spdx.org/licenses/AML.html", + Reference: "https://spdx.org/licenses/AML.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/AML.json", - ReferenceNumber: 352, - Name: "Apple MIT License", - LicenseID: "AML", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/Apple_MIT_License", + }, IsOsiApproved: false, }, "libselinux-1.0": { - Reference: "https://spdx.org/licenses/libselinux-1.0.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", + }, IsOsiApproved: false, }, "rdisc": { - Reference: "https://spdx.org/licenses/Rdisc.html", + Reference: "https://spdx.org/licenses/Rdisc.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Rdisc.json", - ReferenceNumber: 357, - Name: "Rdisc License", - LicenseID: "Rdisc", + DetailsURL: "https://spdx.org/licenses/Rdisc.json", + ReferenceNumber: 357, + Name: "Rdisc License", + LicenseID: "Rdisc", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Rdisc_License", - }, + "https://fedoraproject.org/wiki/Licensing/Rdisc_License", + }, IsOsiApproved: false, }, "bsd-attribution-hpnd-disclaimer": { - Reference: "https://spdx.org/licenses/BSD-Attribution-HPND-disclaimer.html", + 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", + 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", - }, + "https://github.com/cyrusimap/cyrus-sasl/blob/master/COPYING", + }, IsOsiApproved: false, }, "xerox": { - Reference: "https://spdx.org/licenses/Xerox.html", + Reference: "https://spdx.org/licenses/Xerox.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Xerox.json", - ReferenceNumber: 359, - Name: "Xerox License", - LicenseID: "Xerox", + DetailsURL: "https://spdx.org/licenses/Xerox.json", + ReferenceNumber: 359, + Name: "Xerox License", + LicenseID: "Xerox", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Xerox", - }, + "https://fedoraproject.org/wiki/Licensing/Xerox", + }, IsOsiApproved: false, }, "lppl-1.1": { - Reference: "https://spdx.org/licenses/LPPL-1.1.html", + 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", + 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", - }, + "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", + 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", + 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/", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/LGPL-3.0", + }, IsOsiApproved: true, }, "lgpl-2.1": { - Reference: "https://spdx.org/licenses/LGPL-2.1.html", + 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", + 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", - }, + "https://opensource.org/licenses/LGPL-2.1", + }, IsOsiApproved: true, }, "minpack": { - Reference: "https://spdx.org/licenses/Minpack.html", + Reference: "https://spdx.org/licenses/Minpack.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Minpack.json", - ReferenceNumber: 364, - Name: "Minpack License", - LicenseID: "Minpack", + 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", - }, + "https://gitlab.com/libeigen/eigen/-/blob/master/COPYING.MINPACK", + }, IsOsiApproved: false, }, "apsl-1.2": { - Reference: "https://spdx.org/licenses/APSL-1.2.html", + 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", + 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", - }, + "http://www.samurajdata.se/opensource/mirror/licenses/apsl.php", + }, IsOsiApproved: true, }, "eurosym": { - Reference: "https://spdx.org/licenses/Eurosym.html", + Reference: "https://spdx.org/licenses/Eurosym.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Eurosym.json", - ReferenceNumber: 366, - Name: "Eurosym License", - LicenseID: "Eurosym", + DetailsURL: "https://spdx.org/licenses/Eurosym.json", + ReferenceNumber: 366, + Name: "Eurosym License", + LicenseID: "Eurosym", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Eurosym", - }, + "https://fedoraproject.org/wiki/Licensing/Eurosym", + }, IsOsiApproved: false, }, "bsd-advertising-acknowledgement": { - Reference: "https://spdx.org/licenses/BSD-Advertising-Acknowledgement.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://github.com/mirror/ncurses/blob/master/COPYING", + }, IsOsiApproved: false, }, "w3m": { - Reference: "https://spdx.org/licenses/w3m.html", + Reference: "https://spdx.org/licenses/w3m.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/w3m.json", - ReferenceNumber: 370, - Name: "w3m License", - LicenseID: "w3m", + DetailsURL: "https://spdx.org/licenses/w3m.json", + ReferenceNumber: 370, + Name: "w3m License", + LicenseID: "w3m", SeeAlso: []string{ - "https://github.com/tats/w3m/blob/master/COPYING", - }, + "https://github.com/tats/w3m/blob/master/COPYING", + }, IsOsiApproved: false, }, "bzip2-1.0.5": { - Reference: "https://spdx.org/licenses/bzip2-1.0.5.html", + 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", + 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", - }, + "http://bzip.org/1.0.5/bzip2-manual-1.0.5.html", + }, IsOsiApproved: false, }, "pnmstitch": { - Reference: "https://spdx.org/licenses/pnmstitch.html", + Reference: "https://spdx.org/licenses/pnmstitch.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/pnmstitch.json", - ReferenceNumber: 372, - Name: "pnmstitch License", - LicenseID: "pnmstitch", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/CPAL-1.0", + }, IsOsiApproved: true, }, "sissl": { - Reference: "https://spdx.org/licenses/SISSL.html", + 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", + 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", - }, + "https://opensource.org/licenses/SISSL", + }, IsOsiApproved: true, }, "liliq-r-1.1": { - Reference: "https://spdx.org/licenses/LiLiQ-R-1.1.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode", + }, IsOsiApproved: false, }, "unlicense": { - Reference: "https://spdx.org/licenses/Unlicense.html", + Reference: "https://spdx.org/licenses/Unlicense.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Unlicense.json", - ReferenceNumber: 377, - Name: "The Unlicense", - LicenseID: "Unlicense", + DetailsURL: "https://spdx.org/licenses/Unlicense.json", + ReferenceNumber: 377, + Name: "The Unlicense", + LicenseID: "Unlicense", SeeAlso: []string{ - "https://unlicense.org/", - }, + "https://unlicense.org/", + }, IsOsiApproved: true, }, "linux-openib": { - Reference: "https://spdx.org/licenses/Linux-OpenIB.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://cdla.io/sharing-1-0", + }, IsOsiApproved: false, }, "cc-by-3.0": { - Reference: "https://spdx.org/licenses/CC-BY-3.0.html", + 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", + 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", - }, + "https://creativecommons.org/licenses/by/3.0/legalcode", + }, IsOsiApproved: false, }, "oldap-2.4": { - Reference: "https://spdx.org/licenses/OLDAP-2.4.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://www.cs.cmu.edu/~410/licenses.html", + }, IsOsiApproved: false, }, "liliq-p-1.1": { - Reference: "https://spdx.org/licenses/LiLiQ-P-1.1.html", + 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", + 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", - }, + "http://opensource.org/licenses/LiLiQ-P-1.1", + }, IsOsiApproved: true, }, "lgpl-2.0-only": { - Reference: "https://spdx.org/licenses/LGPL-2.0-only.html", + 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", + 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", - }, + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html", + }, IsOsiApproved: true, }, "apafml": { - Reference: "https://spdx.org/licenses/APAFML.html", + 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", + DetailsURL: "https://spdx.org/licenses/APAFML.json", + ReferenceNumber: 386, + Name: "Adobe Postscript AFM License", + LicenseID: "APAFML", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM", - }, + "https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM", + }, IsOsiApproved: false, }, "entessa": { - Reference: "https://spdx.org/licenses/Entessa.html", + 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", + DetailsURL: "https://spdx.org/licenses/Entessa.json", + ReferenceNumber: 387, + Name: "Entessa Public License v1.0", + LicenseID: "Entessa", SeeAlso: []string{ - "https://opensource.org/licenses/Entessa", - }, + "https://opensource.org/licenses/Entessa", + }, IsOsiApproved: true, }, "cnri-python": { - Reference: "https://spdx.org/licenses/CNRI-Python.html", + 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", + 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", - }, + "https://opensource.org/licenses/CNRI-Python", + }, IsOsiApproved: true, }, "ogc-1.0": { - Reference: "https://spdx.org/licenses/OGC-1.0.html", + 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", + 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", - }, + "https://www.ogc.org/ogc/software/1.0", + }, IsOsiApproved: false, }, "hpnd-uc": { - Reference: "https://spdx.org/licenses/HPND-UC.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by/3.0/igo/legalcode", + }, IsOsiApproved: false, }, "mtll": { - Reference: "https://spdx.org/licenses/MTLL.html", + 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", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License", + }, IsOsiApproved: false, }, "hpnd-markus-kuhn": { - Reference: "https://spdx.org/licenses/HPND-Markus-Kuhn.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode", + }, IsOsiApproved: false, }, "ms-rl": { - Reference: "https://spdx.org/licenses/MS-RL.html", + 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", + 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", - }, + "https://opensource.org/licenses/MS-RL", + }, IsOsiApproved: true, }, "amdplpa": { - Reference: "https://spdx.org/licenses/AMDPLPA.html", + 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", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License", + }, IsOsiApproved: false, }, "lal-1.2": { - Reference: "https://spdx.org/licenses/LAL-1.2.html", + 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", + 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/", - }, + "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", + 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", + 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", - }, + "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", + Reference: "https://spdx.org/licenses/curl.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/curl.json", - ReferenceNumber: 399, - Name: "curl License", - LicenseID: "curl", + DetailsURL: "https://spdx.org/licenses/curl.json", + ReferenceNumber: 399, + Name: "curl License", + LicenseID: "curl", SeeAlso: []string{ - "https://github.com/bagder/curl/blob/master/COPYING", - }, + "https://github.com/bagder/curl/blob/master/COPYING", + }, IsOsiApproved: false, }, "oldap-1.2": { - Reference: "https://spdx.org/licenses/OLDAP-1.2.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + Reference: "https://spdx.org/licenses/TermReadKey.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/TermReadKey.json", - ReferenceNumber: 402, - Name: "TermReadKey License", - LicenseID: "TermReadKey", + 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", - }, + "https://github.com/jonathanstowe/TermReadKey/blob/master/README#L9-L10", + }, IsOsiApproved: false, }, "agpl-1.0": { - Reference: "https://spdx.org/licenses/AGPL-1.0.html", + 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", + 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", - }, + "http://www.affero.org/oagpl.html", + }, IsOsiApproved: false, }, "artistic-1.0": { - Reference: "https://spdx.org/licenses/Artistic-1.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/Artistic-1.0", + }, IsOsiApproved: true, }, "cecill-1.1": { - Reference: "https://spdx.org/licenses/CECILL-1.1.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/IPL-1.0", + }, IsOsiApproved: true, }, "lpl-1.02": { - Reference: "https://spdx.org/licenses/LPL-1.02.html", + 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", + 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", - }, + "https://opensource.org/licenses/LPL-1.02", + }, IsOsiApproved: true, }, "baekmuk": { - Reference: "https://spdx.org/licenses/Baekmuk.html", + Reference: "https://spdx.org/licenses/Baekmuk.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Baekmuk.json", - ReferenceNumber: 408, - Name: "Baekmuk License", - LicenseID: "Baekmuk", + 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", - }, + "https://fedoraproject.org/wiki/Licensing:Baekmuk?rd=Licensing/Baekmuk", + }, IsOsiApproved: false, }, "nlod-1.0": { - Reference: "https://spdx.org/licenses/NLOD-1.0.html", + 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", + 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", - }, + "http://data.norge.no/nlod/en/1.0", + }, IsOsiApproved: false, }, "sendmail-8.23": { - Reference: "https://spdx.org/licenses/Sendmail-8.23.html", + 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", + 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", - }, + "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", + 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", + DetailsURL: "https://spdx.org/licenses/NGPL.json", + ReferenceNumber: 411, + Name: "Nethack General Public License", + LicenseID: "NGPL", SeeAlso: []string{ - "https://opensource.org/licenses/NGPL", - }, + "https://opensource.org/licenses/NGPL", + }, IsOsiApproved: true, }, "sspl-1.0": { - Reference: "https://spdx.org/licenses/SSPL-1.0.html", + 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", + 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", - }, + "https://www.mongodb.com/licensing/server-side-public-license", + }, IsOsiApproved: false, }, "ncsa": { - Reference: "https://spdx.org/licenses/NCSA.html", + 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", + 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", - }, + "https://opensource.org/licenses/NCSA", + }, IsOsiApproved: true, }, "cc0-1.0": { - Reference: "https://spdx.org/licenses/CC0-1.0.html", + 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", + 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", - }, + "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + }, IsOsiApproved: false, }, "cecill-c": { - Reference: "https://spdx.org/licenses/CECILL-C.html", + 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", + 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", - }, + "http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html", + }, IsOsiApproved: false, }, "furuseth": { - Reference: "https://spdx.org/licenses/Furuseth.html", + Reference: "https://spdx.org/licenses/Furuseth.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Furuseth.json", - ReferenceNumber: 416, - Name: "Furuseth License", - LicenseID: "Furuseth", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/LGPL-3.0", + }, IsOsiApproved: true, }, "libpng": { - Reference: "https://spdx.org/licenses/Libpng.html", + Reference: "https://spdx.org/licenses/Libpng.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Libpng.json", - ReferenceNumber: 419, - Name: "libpng License", - LicenseID: "Libpng", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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/", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://github.com/usnistgov/fipy/blob/86aaa5c2ba2c6f1be19593c5986071cf6568cc34/LICENSE.rst", + }, IsOsiApproved: false, }, "widget-workshop": { - Reference: "https://spdx.org/licenses/Widget-Workshop.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode", + }, IsOsiApproved: false, }, "unicode-dfs-2015": { - Reference: "https://spdx.org/licenses/Unicode-DFS-2015.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", + }, IsOsiApproved: false, }, "intel": { - Reference: "https://spdx.org/licenses/Intel.html", + 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", + DetailsURL: "https://spdx.org/licenses/Intel.json", + ReferenceNumber: 432, + Name: "Intel Open Source License", + LicenseID: "Intel", SeeAlso: []string{ - "https://opensource.org/licenses/Intel", - }, + "https://opensource.org/licenses/Intel", + }, IsOsiApproved: true, }, "sgp4": { - Reference: "https://spdx.org/licenses/SGP4.html", + Reference: "https://spdx.org/licenses/SGP4.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/SGP4.json", - ReferenceNumber: 433, - Name: "SGP4 Permission Notice", - LicenseID: "SGP4", + 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", - }, + "https://celestrak.org/publications/AIAA/2006-6753/faq.php", + }, IsOsiApproved: false, }, "zimbra-1.3": { - Reference: "https://spdx.org/licenses/Zimbra-1.3.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/OGTSL", + }, IsOsiApproved: true, }, "pddl-1.0": { - Reference: "https://spdx.org/licenses/PDDL-1.0.html", + 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", + 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/", - }, + "https://opendatacommons.org/licenses/pddl/", + }, IsOsiApproved: false, }, "unixcrypt": { - Reference: "https://spdx.org/licenses/UnixCrypt.html", + Reference: "https://spdx.org/licenses/UnixCrypt.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/UnixCrypt.json", - ReferenceNumber: 437, - Name: "UnixCrypt License", - LicenseID: "UnixCrypt", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by-nc/2.5/legalcode", + }, IsOsiApproved: false, }, "erlpl-1.1": { - Reference: "https://spdx.org/licenses/ErlPL-1.1.html", + 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", + 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", - }, + "http://www.erlang.org/EPLICENSE", + }, IsOsiApproved: false, }, "magaz": { - Reference: "https://spdx.org/licenses/magaz.html", + Reference: "https://spdx.org/licenses/magaz.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/magaz.json", - ReferenceNumber: 442, - Name: "magaz License", - LicenseID: "magaz", + 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", - }, + "https://mirrors.nic.cz/tex-archive/macros/latex/contrib/magaz/magaz.tex", + }, IsOsiApproved: false, }, "borceux": { - Reference: "https://spdx.org/licenses/Borceux.html", + Reference: "https://spdx.org/licenses/Borceux.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Borceux.json", - ReferenceNumber: 443, - Name: "Borceux license", - LicenseID: "Borceux", + DetailsURL: "https://spdx.org/licenses/Borceux.json", + ReferenceNumber: 443, + Name: "Borceux license", + LicenseID: "Borceux", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Borceux", - }, + "https://fedoraproject.org/wiki/Licensing/Borceux", + }, IsOsiApproved: false, }, "app-s2p": { - Reference: "https://spdx.org/licenses/App-s2p.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode", + }, IsOsiApproved: false, }, "agpl-3.0": { - Reference: "https://spdx.org/licenses/AGPL-3.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/AGPL-3.0", + }, IsOsiApproved: true, }, "cecill-2.1": { - Reference: "https://spdx.org/licenses/CECILL-2.1.html", + 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", + 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", - }, + "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", + 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", + 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/", - }, + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/", + }, IsOsiApproved: false, }, "bsd-protection": { - Reference: "https://spdx.org/licenses/BSD-Protection.html", + 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", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/BSD_Protection_License", + }, IsOsiApproved: false, }, "cecill-b": { - Reference: "https://spdx.org/licenses/CECILL-B.html", + 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", + 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", - }, + "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html", + }, IsOsiApproved: false, }, "bsd-systemics": { - Reference: "https://spdx.org/licenses/BSD-Systemics.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://www.gnu.org/software/classpath/license.html", + }, IsOsiApproved: false, }, "osl-1.0": { - Reference: "https://spdx.org/licenses/OSL-1.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/OSL-1.0", + }, IsOsiApproved: true, }, "epics": { - Reference: "https://spdx.org/licenses/EPICS.html", + Reference: "https://spdx.org/licenses/EPICS.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/EPICS.json", - ReferenceNumber: 454, - Name: "EPICS Open License", - LicenseID: "EPICS", + DetailsURL: "https://spdx.org/licenses/EPICS.json", + ReferenceNumber: 454, + Name: "EPICS Open License", + LicenseID: "EPICS", SeeAlso: []string{ - "https://epics.anl.gov/license/open.php", - }, + "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", + 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", + 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", - }, + "https://www.gnu.org/licenses/fdl-1.3.txt", + }, IsOsiApproved: false, }, "rpsl-1.0": { - Reference: "https://spdx.org/licenses/RPSL-1.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/RPSL-1.0", + }, IsOsiApproved: true, }, "cpl-1.0": { - Reference: "https://spdx.org/licenses/CPL-1.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/CPL-1.0", + }, IsOsiApproved: true, }, "efl-2.0": { - Reference: "https://spdx.org/licenses/EFL-2.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/EFL-2.0", + }, IsOsiApproved: true, }, "npl-1.1": { - Reference: "https://spdx.org/licenses/NPL-1.1.html", + 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", + 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/", - }, + "http://www.mozilla.org/MPL/NPL/1.1/", + }, IsOsiApproved: false, }, "cube": { - Reference: "https://spdx.org/licenses/Cube.html", + Reference: "https://spdx.org/licenses/Cube.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Cube.json", - ReferenceNumber: 460, - Name: "Cube License", - LicenseID: "Cube", + DetailsURL: "https://spdx.org/licenses/Cube.json", + ReferenceNumber: 460, + Name: "Cube License", + LicenseID: "Cube", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Cube", - }, + "https://fedoraproject.org/wiki/Licensing/Cube", + }, IsOsiApproved: false, }, "hpnd-sell-regexpr": { - Reference: "https://spdx.org/licenses/HPND-sell-regexpr.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by-nc-sa/3.0/de/legalcode", + }, IsOsiApproved: false, }, "ampas": { - Reference: "https://spdx.org/licenses/AMPAS.html", + 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", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD", + }, IsOsiApproved: false, }, "nlod-2.0": { - Reference: "https://spdx.org/licenses/NLOD-2.0.html", + 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", + 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", - }, + "http://data.norge.no/nlod/en/2.0", + }, IsOsiApproved: false, }, "ttwl": { - Reference: "https://spdx.org/licenses/TTWL.html", + 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", + 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", - }, + "https://github.com/ap/Text-Tabs/blob/master/lib.modern/Text/Tabs.pm#L148", + }, IsOsiApproved: false, }, "swl": { - Reference: "https://spdx.org/licenses/SWL.html", + 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", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/SWL", + }, IsOsiApproved: false, }, "mit-modern-variant": { - Reference: "https://spdx.org/licenses/MIT-Modern-Variant.html", + 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", + 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", - }, + "https://pirlwww.lpl.arizona.edu/resources/guide/software/PerlTk/Tixlic.html", + }, IsOsiApproved: true, }, "fsfullrwd": { - Reference: "https://spdx.org/licenses/FSFULLRWD.html", + 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", + 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", - }, + "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", + 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", + 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/", - }, + "http://www.nationalarchives.gov.uk/doc/non-commercial-government-licence/version/2/", + }, IsOsiApproved: false, }, "ntp-0": { - Reference: "https://spdx.org/licenses/NTP-0.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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/", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/Open_Public_License", + }, IsOsiApproved: false, }, "frameworx-1.0": { - Reference: "https://spdx.org/licenses/Frameworx-1.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/Frameworx-1.0", + }, IsOsiApproved: true, }, "zed": { - Reference: "https://spdx.org/licenses/Zed.html", + Reference: "https://spdx.org/licenses/Zed.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Zed.json", - ReferenceNumber: 479, - Name: "Zed License", - LicenseID: "Zed", + DetailsURL: "https://spdx.org/licenses/Zed.json", + ReferenceNumber: 479, + Name: "Zed License", + LicenseID: "Zed", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Zed", - }, + "https://fedoraproject.org/wiki/Licensing/Zed", + }, IsOsiApproved: false, }, "rhecos-1.1": { - Reference: "https://spdx.org/licenses/RHeCos-1.1.html", + 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", + 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", - }, + "http://ecos.sourceware.org/old-license.html", + }, IsOsiApproved: false, }, "boehm-gc": { - Reference: "https://spdx.org/licenses/Boehm-GC.html", + 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", + 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", - }, + "https://github.com/ivmai/libatomic_ops/blob/master/LICENSE", + }, IsOsiApproved: false, }, "martin-birgmeier": { - Reference: "https://spdx.org/licenses/Martin-Birgmeier.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/LGPL-2.1", + }, IsOsiApproved: true, }, "w3c-20150513": { - Reference: "https://spdx.org/licenses/W3C-20150513.html", + 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", + 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", - }, + "https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document", + }, IsOsiApproved: false, }, "kastrup": { - Reference: "https://spdx.org/licenses/Kastrup.html", + Reference: "https://spdx.org/licenses/Kastrup.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Kastrup.json", - ReferenceNumber: 486, - Name: "Kastrup License", - LicenseID: "Kastrup", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/MPL-2.0", + }, IsOsiApproved: true, }, "cpol-1.02": { - Reference: "https://spdx.org/licenses/CPOL-1.02.html", + 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", + 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", - }, + "http://www.codeproject.com/info/cpol10.aspx", + }, IsOsiApproved: false, }, "vim": { - Reference: "https://spdx.org/licenses/Vim.html", + Reference: "https://spdx.org/licenses/Vim.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Vim.json", - ReferenceNumber: 489, - Name: "Vim License", - LicenseID: "Vim", + DetailsURL: "https://spdx.org/licenses/Vim.json", + ReferenceNumber: 489, + Name: "Vim License", + LicenseID: "Vim", SeeAlso: []string{ - "http://vimdoc.sourceforge.net/htmldoc/uganda.html", - }, + "http://vimdoc.sourceforge.net/htmldoc/uganda.html", + }, IsOsiApproved: false, }, "zlib-acknowledgement": { - Reference: "https://spdx.org/licenses/zlib-acknowledgement.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://www.gnu.org/licenses/gcc-exception-3.1.html", + }, IsOsiApproved: true, }, "mit-open-group": { - Reference: "https://spdx.org/licenses/MIT-open-group.html", + 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", + 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", - }, + "https://gitlab.freedesktop.org/xorg/app/xauth/-/blob/master/COPYING", + }, IsOsiApproved: false, }, "imatix": { - Reference: "https://spdx.org/licenses/iMatix.html", + 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", + 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", - }, + "http://legacy.imatix.com/html/sfl/sfl4.htm#license", + }, IsOsiApproved: false, }, "mit-festival": { - Reference: "https://spdx.org/licenses/MIT-Festival.html", + 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", + 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", - }, + "https://github.com/festvox/speech_tools/blob/master/COPYING", + }, IsOsiApproved: false, }, "urt-rle": { - Reference: "https://spdx.org/licenses/URT-RLE.html", + 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", + 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", - }, + "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", + 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", + 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/", - }, + "https://cdla.dev/computational-use-of-data-agreement-v1-0/", + }, IsOsiApproved: false, }, "zpl-1.1": { - Reference: "https://spdx.org/licenses/ZPL-1.1.html", + 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", + 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", - }, + "http://old.zope.org/Resources/License/ZPL-1.1", + }, IsOsiApproved: false, }, "crystalstacker": { - Reference: "https://spdx.org/licenses/CrystalStacker.html", + Reference: "https://spdx.org/licenses/CrystalStacker.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/CrystalStacker.json", - ReferenceNumber: 498, - Name: "CrystalStacker License", - LicenseID: "CrystalStacker", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://github.com/sigmavirus24/x11-ssh-askpass/blob/master/README", + }, IsOsiApproved: false, }, "ms-pl": { - Reference: "https://spdx.org/licenses/MS-PL.html", + 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", + 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", - }, + "https://opensource.org/licenses/MS-PL", + }, IsOsiApproved: true, }, "hpnd-pbmplus": { - Reference: "https://spdx.org/licenses/HPND-Pbmplus.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/OFL-1.1", + }, IsOsiApproved: true, }, "leptonica": { - Reference: "https://spdx.org/licenses/Leptonica.html", + Reference: "https://spdx.org/licenses/Leptonica.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Leptonica.json", - ReferenceNumber: 506, - Name: "Leptonica License", - LicenseID: "Leptonica", + DetailsURL: "https://spdx.org/licenses/Leptonica.json", + ReferenceNumber: 506, + Name: "Leptonica License", + LicenseID: "Leptonica", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Leptonica", - }, + "https://fedoraproject.org/wiki/Licensing/Leptonica", + }, IsOsiApproved: false, }, "sunpro": { - Reference: "https://spdx.org/licenses/SunPro.html", + Reference: "https://spdx.org/licenses/SunPro.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/SunPro.json", - ReferenceNumber: 507, - Name: "SunPro License", - LicenseID: "SunPro", + 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", - }, + "https://github.com/freebsd/freebsd-src/blob/main/lib/msun/src/e_lgammal.c", + }, IsOsiApproved: false, }, "wtfpl": { - Reference: "https://spdx.org/licenses/WTFPL.html", + 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", + 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", - }, + "http://sam.zoy.org/wtfpl/COPYING", + }, IsOsiApproved: false, }, "cddl-1.0": { - Reference: "https://spdx.org/licenses/CDDL-1.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/cddl1", + }, IsOsiApproved: true, }, "offis": { - Reference: "https://spdx.org/licenses/OFFIS.html", + Reference: "https://spdx.org/licenses/OFFIS.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/OFFIS.json", - ReferenceNumber: 510, - Name: "OFFIS License", - LicenseID: "OFFIS", + 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", - }, + "https://sourceforge.net/p/xmedcon/code/ci/master/tree/libs/dicom/README", + }, IsOsiApproved: false, }, "latex2e": { - Reference: "https://spdx.org/licenses/Latex2e.html", + Reference: "https://spdx.org/licenses/Latex2e.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Latex2e.json", - ReferenceNumber: 511, - Name: "Latex2e License", - LicenseID: "Latex2e", + DetailsURL: "https://spdx.org/licenses/Latex2e.json", + ReferenceNumber: 511, + Name: "Latex2e License", + LicenseID: "Latex2e", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Latex2e", - }, + "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", + 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", + 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", - }, + "https://www.gnu.org/licenses/fdl-1.3.txt", + }, IsOsiApproved: false, }, "xpp": { - Reference: "https://spdx.org/licenses/xpp.html", + Reference: "https://spdx.org/licenses/xpp.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/xpp.json", - ReferenceNumber: 513, - Name: "XPP License", - LicenseID: "xpp", + DetailsURL: "https://spdx.org/licenses/xpp.json", + ReferenceNumber: 513, + Name: "XPP License", + LicenseID: "xpp", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/xpp", - }, + "https://fedoraproject.org/wiki/Licensing/xpp", + }, IsOsiApproved: false, }, "lppl-1.3c": { - Reference: "https://spdx.org/licenses/LPPL-1.3c.html", + 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", + 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", - }, + "https://opensource.org/licenses/LPPL-1.3c", + }, IsOsiApproved: true, }, "xlock": { - Reference: "https://spdx.org/licenses/xlock.html", + Reference: "https://spdx.org/licenses/xlock.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/xlock.json", - ReferenceNumber: 515, - Name: "xlock License", - LicenseID: "xlock", + 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", - }, + "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", + 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", + 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", - }, + "https://www.govdata.de/dl-de/by-2-0", + }, IsOsiApproved: false, }, "vostrom": { - Reference: "https://spdx.org/licenses/VOSTROM.html", + 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", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/VOSTROM", + }, IsOsiApproved: false, }, "apsl-1.1": { - Reference: "https://spdx.org/licenses/APSL-1.1.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/ECL-2.0", + }, IsOsiApproved: true, }, "bzip2-1.0.6": { - Reference: "https://spdx.org/licenses/bzip2-1.0.6.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://github.com/xdebug/xdebug/blob/master/LICENSE", + }, IsOsiApproved: false, }, "php-3.0": { - Reference: "https://spdx.org/licenses/PHP-3.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/PHP-3.0", + }, IsOsiApproved: true, }, "tcl": { - Reference: "https://spdx.org/licenses/TCL.html", + Reference: "https://spdx.org/licenses/TCL.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/TCL.json", - ReferenceNumber: 523, - Name: "TCL/TK License", - LicenseID: "TCL", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/TCL", + }, IsOsiApproved: false, }, "sgi-b-1.1": { - Reference: "https://spdx.org/licenses/SGI-B-1.1.html", + 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", + 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/", - }, + "http://oss.sgi.com/projects/FreeB/", + }, IsOsiApproved: false, }, "python-2.0": { - Reference: "https://spdx.org/licenses/Python-2.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/Python-2.0", + }, IsOsiApproved: true, }, "apsl-2.0": { - Reference: "https://spdx.org/licenses/APSL-2.0.html", + 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", + 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/", - }, + "http://www.opensource.apple.com/license/apsl/", + }, IsOsiApproved: true, }, "wsuipa": { - Reference: "https://spdx.org/licenses/Wsuipa.html", + Reference: "https://spdx.org/licenses/Wsuipa.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Wsuipa.json", - ReferenceNumber: 527, - Name: "Wsuipa License", - LicenseID: "Wsuipa", + DetailsURL: "https://spdx.org/licenses/Wsuipa.json", + ReferenceNumber: 527, + Name: "Wsuipa License", + LicenseID: "Wsuipa", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Wsuipa", - }, + "https://fedoraproject.org/wiki/Licensing/Wsuipa", + }, IsOsiApproved: false, }, "apache-1.0": { - Reference: "https://spdx.org/licenses/Apache-1.0.html", + 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", + 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", - }, + "http://www.apache.org/licenses/LICENSE-1.0", + }, IsOsiApproved: false, }, "bsl-1.0": { - Reference: "https://spdx.org/licenses/BSL-1.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/BSL-1.0", + }, IsOsiApproved: true, }, "antlr-pd": { - Reference: "https://spdx.org/licenses/ANTLR-PD.html", + 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", + 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", - }, + "http://www.antlr2.org/license.html", + }, IsOsiApproved: false, }, "lal-1.3": { - Reference: "https://spdx.org/licenses/LAL-1.3.html", + 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", + 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/", - }, + "https://artlibre.org/", + }, IsOsiApproved: false, }, "hpnd-export-us-modify": { - Reference: "https://spdx.org/licenses/HPND-export-US-modify.html", + 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", + 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", - }, + "https://github.com/pythongssapi/k5test/blob/v0.10.3/K5TEST-LICENSE.txt", + }, IsOsiApproved: false, }, "arphic-1999": { - Reference: "https://spdx.org/licenses/Arphic-1999.html", + 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", + 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", - }, + "http://ftp.gnu.org/gnu/non-gnu/chinese-fonts-truetype/LICENSE", + }, IsOsiApproved: false, }, "dotseqn": { - Reference: "https://spdx.org/licenses/Dotseqn.html", + Reference: "https://spdx.org/licenses/Dotseqn.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Dotseqn.json", - ReferenceNumber: 534, - Name: "Dotseqn License", - LicenseID: "Dotseqn", + DetailsURL: "https://spdx.org/licenses/Dotseqn.json", + ReferenceNumber: 534, + Name: "Dotseqn License", + LicenseID: "Dotseqn", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Dotseqn", - }, + "https://fedoraproject.org/wiki/Licensing/Dotseqn", + }, IsOsiApproved: false, }, "info-zip": { - Reference: "https://spdx.org/licenses/Info-ZIP.html", + 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", + 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", - }, + "http://www.info-zip.org/license.html", + }, IsOsiApproved: false, }, "psutils": { - Reference: "https://spdx.org/licenses/psutils.html", + Reference: "https://spdx.org/licenses/psutils.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/psutils.json", - ReferenceNumber: 536, - Name: "psutils License", - LicenseID: "psutils", + DetailsURL: "https://spdx.org/licenses/psutils.json", + ReferenceNumber: 536, + Name: "psutils License", + LicenseID: "psutils", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/psutils", - }, + "https://fedoraproject.org/wiki/Licensing/psutils", + }, IsOsiApproved: false, }, "nist-pd": { - Reference: "https://spdx.org/licenses/NIST-PD.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/GPL-2.0", + }, IsOsiApproved: true, }, "bsd-4.3reno": { - Reference: "https://spdx.org/licenses/BSD-4.3RENO.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "http://www.jython.org/license.html", + }, IsOsiApproved: false, }, "coil-1.0": { - Reference: "https://spdx.org/licenses/COIL-1.0.html", + 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", + 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", - }, + "https://coil.apotheon.org/plaintext/01.0.txt", + }, IsOsiApproved: false, }, "fsfap": { - Reference: "https://spdx.org/licenses/FSFAP.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/LPL-1.0", + }, IsOsiApproved: true, }, "olfl-1.3": { - Reference: "https://spdx.org/licenses/OLFL-1.3.html", + 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", + 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/", - }, + "https://opensource.org/license/olfl-1-3/", + }, IsOsiApproved: true, }, "adobe-glyph": { - Reference: "https://spdx.org/licenses/Adobe-Glyph.html", + 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", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", + }, IsOsiApproved: false, }, "nist-software": { - Reference: "https://spdx.org/licenses/NIST-Software.html", + 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", + 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", - }, + "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", + Reference: "https://spdx.org/licenses/TTYP0.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/TTYP0.json", - ReferenceNumber: 548, - Name: "TTYP0 License", - LicenseID: "TTYP0", + 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/", - }, + "https://people.mpi-inf.mpg.de/~uwe/misc/uw-ttyp0/", + }, IsOsiApproved: false, }, "lgpllr": { - Reference: "https://spdx.org/licenses/LGPLLR.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by-nd/1.0/legalcode", + }, IsOsiApproved: false, }, "elastic-2.0": { - Reference: "https://spdx.org/licenses/Elastic-2.0.html", + 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", + 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", - }, + "https://github.com/elastic/elasticsearch/blob/master/licenses/ELASTIC-LICENSE-2.0.txt", + }, IsOsiApproved: false, }, "fbm": { - Reference: "https://spdx.org/licenses/FBM.html", + Reference: "https://spdx.org/licenses/FBM.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/FBM.json", - ReferenceNumber: 552, - Name: "Fuzzy Bitmap License", - LicenseID: "FBM", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/AGPL-3.0", + }, IsOsiApproved: true, }, "barr": { - Reference: "https://spdx.org/licenses/Barr.html", + Reference: "https://spdx.org/licenses/Barr.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Barr.json", - ReferenceNumber: 555, - Name: "Barr License", - LicenseID: "Barr", + DetailsURL: "https://spdx.org/licenses/Barr.json", + ReferenceNumber: 555, + Name: "Barr License", + LicenseID: "Barr", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Barr", - }, + "https://fedoraproject.org/wiki/Licensing/Barr", + }, IsOsiApproved: false, }, "cdla-permissive-2.0": { - Reference: "https://spdx.org/licenses/CDLA-Permissive-2.0.html", + 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", + 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", - }, + "https://cdla.dev/permissive-2-0", + }, IsOsiApproved: false, }, "gpl-3.0-or-later": { - Reference: "https://spdx.org/licenses/GPL-3.0-or-later.html", + 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", + 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", - }, + "https://opensource.org/licenses/GPL-3.0", + }, IsOsiApproved: true, }, "netcdf": { - Reference: "https://spdx.org/licenses/NetCDF.html", + Reference: "https://spdx.org/licenses/NetCDF.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/NetCDF.json", - ReferenceNumber: 558, - Name: "NetCDF license", - LicenseID: "NetCDF", + 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", - }, + "http://www.unidata.ucar.edu/software/netcdf/copyright.html", + }, IsOsiApproved: false, }, "bahyph": { - Reference: "https://spdx.org/licenses/Bahyph.html", + Reference: "https://spdx.org/licenses/Bahyph.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Bahyph.json", - ReferenceNumber: 559, - Name: "Bahyph License", - LicenseID: "Bahyph", + DetailsURL: "https://spdx.org/licenses/Bahyph.json", + ReferenceNumber: 559, + Name: "Bahyph License", + LicenseID: "Bahyph", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/Bahyph", - }, + "https://fedoraproject.org/wiki/Licensing/Bahyph", + }, IsOsiApproved: false, }, "cc-by-3.0-us": { - Reference: "https://spdx.org/licenses/CC-BY-3.0-US.html", + 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", + 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", - }, + "https://creativecommons.org/licenses/by/3.0/us/legalcode", + }, IsOsiApproved: false, }, "dtoa": { - Reference: "https://spdx.org/licenses/dtoa.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://creativecommons.org/licenses/by/2.5/legalcode", + }, IsOsiApproved: false, }, "condor-1.1": { - Reference: "https://spdx.org/licenses/Condor-1.1.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://opensource.org/licenses/RSCPL", + }, IsOsiApproved: true, }, "latex2e-translated-notice": { - Reference: "https://spdx.org/licenses/Latex2e-translated-notice.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT", + }, IsOsiApproved: false, }, "smlnj": { - Reference: "https://spdx.org/licenses/SMLNJ.html", + 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", + 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", - }, + "https://www.smlnj.org/license.html", + }, IsOsiApproved: false, }, "bsd-2-clause-freebsd": { - Reference: "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.html", + 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", + 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", - }, + "http://www.freebsd.org/copyright/freebsd-license.html", + }, IsOsiApproved: false, }, "tpdl": { - Reference: "https://spdx.org/licenses/TPDL.html", + Reference: "https://spdx.org/licenses/TPDL.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/TPDL.json", - ReferenceNumber: 571, - Name: "Time::ParseDate License", - LicenseID: "TPDL", + DetailsURL: "https://spdx.org/licenses/TPDL.json", + ReferenceNumber: 571, + Name: "Time::ParseDate License", + LicenseID: "TPDL", SeeAlso: []string{ - "https://metacpan.org/pod/Time::ParseDate#LICENSE", - }, + "https://metacpan.org/pod/Time::ParseDate#LICENSE", + }, IsOsiApproved: false, }, "multics": { - Reference: "https://spdx.org/licenses/Multics.html", + Reference: "https://spdx.org/licenses/Multics.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Multics.json", - ReferenceNumber: 572, - Name: "Multics License", - LicenseID: "Multics", + DetailsURL: "https://spdx.org/licenses/Multics.json", + ReferenceNumber: 572, + Name: "Multics License", + LicenseID: "Multics", SeeAlso: []string{ - "https://opensource.org/licenses/Multics", - }, + "https://opensource.org/licenses/Multics", + }, IsOsiApproved: true, }, "lgpl-3.0+": { - Reference: "https://spdx.org/licenses/LGPL-3.0+.html", + 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+", + 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", - }, + "https://opensource.org/licenses/LGPL-3.0", + }, IsOsiApproved: true, }, "gfdl-1.3": { - Reference: "https://spdx.org/licenses/GFDL-1.3.html", + 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", + 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", - }, + "https://www.gnu.org/licenses/fdl-1.3.txt", + }, IsOsiApproved: false, }, "bsd-4-clause": { - Reference: "https://spdx.org/licenses/BSD-4-Clause.html", + 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", + 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", - }, + "http://directory.fsf.org/wiki/License:BSD_4Clause", + }, IsOsiApproved: false, }, "lgpl-2.0+": { - Reference: "https://spdx.org/licenses/LGPL-2.0+.html", + 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+", + 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", - }, + "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", + 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", + 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", - }, + "https://github.com/protegeproject/protege/blob/master/license.txt", + }, IsOsiApproved: false, }, "glide": { - Reference: "https://spdx.org/licenses/Glide.html", + Reference: "https://spdx.org/licenses/Glide.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/Glide.json", - ReferenceNumber: 578, - Name: "3dfx Glide License", - LicenseID: "Glide", + 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", - }, + "http://www.users.on.net/~triforce/glidexp/COPYING.txt", + }, IsOsiApproved: false, }, "opubl-1.0": { - Reference: "https://spdx.org/licenses/OPUBL-1.0.html", + 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", + 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", - }, + "https://www.ctan.org/license/opl", + }, IsOsiApproved: false, }, "cc-by-sa-2.0": { - Reference: "https://spdx.org/licenses/CC-BY-SA-2.0.html", + 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", + 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", - }, + "https://creativecommons.org/licenses/by-sa/2.0/legalcode", + }, IsOsiApproved: false, }, "haskellreport": { - Reference: "https://spdx.org/licenses/HaskellReport.html", + 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", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License", + }, IsOsiApproved: false, }, "jpl-image": { - Reference: "https://spdx.org/licenses/JPL-image.html", + 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", + 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", - }, + "https://www.jpl.nasa.gov/jpl-image-use-policy", + }, IsOsiApproved: false, }, "ibm-pibs": { - Reference: "https://spdx.org/licenses/IBM-pibs.html", + 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", + 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", - }, + "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", + Reference: "https://spdx.org/licenses/FTL.html", IsDeprecatedLicenseID: false, - DetailsURL: "https://spdx.org/licenses/FTL.json", - ReferenceNumber: 584, - Name: "Freetype Project License", - LicenseID: "FTL", + 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", - }, + "http://gitlab.freedesktop.org/freetype/freetype/-/raw/master/docs/FTL.TXT", + }, IsOsiApproved: false, }, "snia": { - Reference: "https://spdx.org/licenses/SNIA.html", + 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", + 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", - }, + "https://fedoraproject.org/wiki/Licensing/SNIA_Public_License", + }, IsOsiApproved: false, }, "hippocratic-2.1": { - Reference: "https://spdx.org/licenses/Hippocratic-2.1.html", + 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", + 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", - }, + "https://github.com/EthicalSource/hippocratic-license/blob/58c0e646d64ff6fbee275bfe2b9492f914e3ab2a/LICENSE.txt", + }, IsOsiApproved: false, }, "simpl-2.0": { - Reference: "https://spdx.org/licenses/SimPL-2.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/SimPL-2.0", + }, IsOsiApproved: true, }, "bsd-3-clause-clear": { - Reference: "https://spdx.org/licenses/BSD-3-Clause-Clear.html", + 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", + 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", - }, + "http://labs.metacarta.com/license-explanation.html#license", + }, IsOsiApproved: false, }, "spencer-86": { - Reference: "https://spdx.org/licenses/Spencer-86.html", + 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", + 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", - }, + "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", + 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", + 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/", - }, + "https://mariadb.com/bsl11/", + }, IsOsiApproved: false, }, "adsl": { - Reference: "https://spdx.org/licenses/ADSL.html", + 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", + DetailsURL: "https://spdx.org/licenses/ADSL.json", + ReferenceNumber: 591, + Name: "Amazon Digital Services License", + LicenseID: "ADSL", SeeAlso: []string{ - "https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense", - }, + "https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense", + }, IsOsiApproved: false, }, "oldap-2.3": { - Reference: "https://spdx.org/licenses/OLDAP-2.3.html", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "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", + 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", + 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", - }, + "http://dev.perl.org/licenses/artistic.html", + }, IsOsiApproved: true, }, "gsoap-1.3b": { - Reference: "https://spdx.org/licenses/gSOAP-1.3b.html", + 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", + 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", - }, + "http://www.cs.fsu.edu/~engelen/license.html", + }, IsOsiApproved: false, }, "nposl-3.0": { - Reference: "https://spdx.org/licenses/NPOSL-3.0.html", + 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", + 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", - }, + "https://opensource.org/licenses/NOSL3.0", + }, IsOsiApproved: true, }, }