├── .github ├── dco.yml └── workflows │ ├── go.yml │ └── release.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CREDITS.md ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── NOTICE.txt ├── README.md ├── SECURITY.md ├── api └── scanner │ ├── scan.go │ ├── scan_resources_test.go │ └── scan_test.go ├── cmd ├── license-scanner.md ├── root.go └── root_test.go ├── configurer ├── README.md └── configurer.go ├── debugger └── debug.go ├── deprecated.txt ├── examples └── cli │ ├── enhancer │ ├── README.md │ └── testdata │ │ ├── 0BSD.txt │ │ ├── ANTLR-PD.txt │ │ └── ANTLR-PD_plus.txt │ └── licensedb │ └── README.md ├── go.mod ├── go.sum ├── identifier ├── enhancer.go ├── enhancer_test.go ├── identifier.go ├── identifier_spdx_test.go ├── identifier_test.go ├── match_test.go └── testfiles │ ├── aml.txt │ └── wcwidth.txt ├── importer ├── importer.go ├── importer_test.go ├── precheck_test.go ├── precheck_writer.go └── validator.go ├── licenses ├── README.md ├── license.go └── license_test.go ├── main.go ├── normalizer ├── normalizer.go ├── normalizer_test.go └── replacement_words.json ├── resources ├── LIST.md ├── custom │ ├── default │ │ └── license_patterns │ │ │ ├── Apache-2.0 │ │ │ ├── associated_jackson-header.txt │ │ │ ├── license_Apache-2.0.txt │ │ │ ├── license_Apache-2.0_header.txt │ │ │ ├── license_alt_title.txt │ │ │ ├── license_info.json │ │ │ ├── prechecks_associated_jackson-header.json │ │ │ ├── prechecks_license_Apache-2.0.json │ │ │ ├── prechecks_license_Apache-2.0_header.json │ │ │ └── prechecks_license_alt_title.json │ │ │ ├── BSD-2-Clause │ │ │ ├── associated_BSD-header.txt │ │ │ ├── license_info.json │ │ │ ├── license_text.txt │ │ │ ├── prechecks_associated_BSD-header.json │ │ │ └── prechecks_license_text.json │ │ │ ├── BSD-3-Clause │ │ │ ├── associated_BSD-header.txt │ │ │ ├── associated_Liability_Clause.txt │ │ │ ├── associated_Liability_Short.txt │ │ │ ├── license_Pallets-3-text.txt │ │ │ ├── license_info.json │ │ │ ├── license_text.txt │ │ │ ├── prechecks_associated_BSD-header.json │ │ │ ├── prechecks_associated_Liability_Clause.json │ │ │ ├── prechecks_associated_Liability_Short.json │ │ │ ├── prechecks_license_Pallets-3-text.json │ │ │ └── prechecks_license_text.json │ │ │ ├── ISC │ │ │ ├── license_ISC.txt │ │ │ ├── license_info.json │ │ │ └── prechecks_license_ISC.json │ │ │ └── MIT │ │ │ ├── associated_full-title.txt │ │ │ ├── associated_liability_clause.txt │ │ │ ├── associated_short-title.txt │ │ │ ├── license_MIT.txt │ │ │ ├── license_info.json │ │ │ ├── prechecks_associated_full-title.json │ │ │ ├── prechecks_associated_liability_clause.json │ │ │ ├── prechecks_associated_short-title.json │ │ │ └── prechecks_license_MIT.json │ └── testdata │ │ └── license_patterns │ │ └── TESTIMP │ │ ├── associated_text.txt │ │ ├── license_info.json │ │ ├── license_text.txt │ │ └── optional_text.txt ├── pattern_test.go ├── resources.go └── spdx │ ├── README.md │ ├── default │ ├── json │ │ ├── exceptions.json │ │ └── licenses.json │ ├── precheck │ │ ├── 0BSD.json │ │ ├── 389-exception.json │ │ ├── 3D-Slicer-1.0.json │ │ ├── AAL.json │ │ ├── ADSL.json │ │ ├── AFL-1.1.json │ │ ├── AFL-1.2.json │ │ ├── AFL-2.0.json │ │ ├── AFL-2.1.json │ │ ├── AFL-3.0.json │ │ ├── AGPL-1.0-only.json │ │ ├── AGPL-1.0-or-later.json │ │ ├── AGPL-3.0-only.json │ │ ├── AGPL-3.0-or-later.json │ │ ├── AMD-newlib.json │ │ ├── AMDPLPA.json │ │ ├── AML-glslang.json │ │ ├── AML.json │ │ ├── AMPAS.json │ │ ├── ANTLR-PD-fallback.json │ │ ├── ANTLR-PD.json │ │ ├── APAFML.json │ │ ├── APL-1.0.json │ │ ├── APSL-1.0.json │ │ ├── APSL-1.1.json │ │ ├── APSL-1.2.json │ │ ├── APSL-2.0.json │ │ ├── ASWF-Digital-Assets-1.0.json │ │ ├── ASWF-Digital-Assets-1.1.json │ │ ├── Abstyles.json │ │ ├── AdaCore-doc.json │ │ ├── Adobe-2006.json │ │ ├── Adobe-Display-PostScript.json │ │ ├── Adobe-Glyph.json │ │ ├── Adobe-Utopia.json │ │ ├── Afmparse.json │ │ ├── Aladdin.json │ │ ├── Apache-1.0.json │ │ ├── Apache-1.1.json │ │ ├── Apache-2.0.json │ │ ├── App-s2p.json │ │ ├── Arphic-1999.json │ │ ├── Artistic-1.0-Perl.json │ │ ├── Artistic-1.0-cl8.json │ │ ├── Artistic-1.0.json │ │ ├── Artistic-2.0.json │ │ ├── Asterisk-exception.json │ │ ├── Asterisk-linking-protocols-exception.json │ │ ├── Autoconf-exception-2.0.json │ │ ├── Autoconf-exception-3.0.json │ │ ├── Autoconf-exception-generic-3.0.json │ │ ├── Autoconf-exception-generic.json │ │ ├── Autoconf-exception-macro.json │ │ ├── BSD-1-Clause.json │ │ ├── BSD-2-Clause-Darwin.json │ │ ├── BSD-2-Clause-Patent.json │ │ ├── BSD-2-Clause-Views.json │ │ ├── BSD-2-Clause-first-lines.json │ │ ├── BSD-2-Clause.json │ │ ├── BSD-3-Clause-Attribution.json │ │ ├── BSD-3-Clause-Clear.json │ │ ├── BSD-3-Clause-HP.json │ │ ├── BSD-3-Clause-LBNL.json │ │ ├── BSD-3-Clause-Modification.json │ │ ├── BSD-3-Clause-No-Military-License.json │ │ ├── BSD-3-Clause-No-Nuclear-License-2014.json │ │ ├── BSD-3-Clause-No-Nuclear-License.json │ │ ├── BSD-3-Clause-No-Nuclear-Warranty.json │ │ ├── BSD-3-Clause-Open-MPI.json │ │ ├── BSD-3-Clause-Sun.json │ │ ├── BSD-3-Clause-acpica.json │ │ ├── BSD-3-Clause-flex.json │ │ ├── BSD-3-Clause.json │ │ ├── BSD-4-Clause-Shortened.json │ │ ├── BSD-4-Clause-UC.json │ │ ├── BSD-4-Clause.json │ │ ├── BSD-4.3RENO.json │ │ ├── BSD-4.3TAHOE.json │ │ ├── BSD-Advertising-Acknowledgement.json │ │ ├── BSD-Attribution-HPND-disclaimer.json │ │ ├── BSD-Inferno-Nettverk.json │ │ ├── BSD-Protection.json │ │ ├── BSD-Source-Code.json │ │ ├── BSD-Source-beginning-file.json │ │ ├── BSD-Systemics-W3Works.json │ │ ├── BSD-Systemics.json │ │ ├── BSL-1.0.json │ │ ├── BUSL-1.1.json │ │ ├── Baekmuk.json │ │ ├── Bahyph.json │ │ ├── Barr.json │ │ ├── Beerware.json │ │ ├── Bison-exception-1.24.json │ │ ├── Bison-exception-2.2.json │ │ ├── BitTorrent-1.0.json │ │ ├── BitTorrent-1.1.json │ │ ├── Bitstream-Charter.json │ │ ├── Bitstream-Vera.json │ │ ├── BlueOak-1.0.0.json │ │ ├── Boehm-GC-without-fee.json │ │ ├── Boehm-GC.json │ │ ├── Bootloader-exception.json │ │ ├── Borceux.json │ │ ├── Brian-Gladman-2-Clause.json │ │ ├── Brian-Gladman-3-Clause.json │ │ ├── C-UDA-1.0.json │ │ ├── CAL-1.0-Combined-Work-Exception.json │ │ ├── CAL-1.0.json │ │ ├── CATOSL-1.1.json │ │ ├── CC-BY-1.0.json │ │ ├── CC-BY-2.0.json │ │ ├── CC-BY-2.5-AU.json │ │ ├── CC-BY-2.5.json │ │ ├── CC-BY-3.0-AT.json │ │ ├── CC-BY-3.0-AU.json │ │ ├── CC-BY-3.0-DE.json │ │ ├── CC-BY-3.0-IGO.json │ │ ├── CC-BY-3.0-NL.json │ │ ├── CC-BY-3.0-US.json │ │ ├── CC-BY-3.0.json │ │ ├── CC-BY-4.0.json │ │ ├── CC-BY-NC-1.0.json │ │ ├── CC-BY-NC-2.0.json │ │ ├── CC-BY-NC-2.5.json │ │ ├── CC-BY-NC-3.0-DE.json │ │ ├── CC-BY-NC-3.0.json │ │ ├── CC-BY-NC-4.0.json │ │ ├── CC-BY-NC-ND-1.0.json │ │ ├── CC-BY-NC-ND-2.0.json │ │ ├── CC-BY-NC-ND-2.5.json │ │ ├── CC-BY-NC-ND-3.0-DE.json │ │ ├── CC-BY-NC-ND-3.0-IGO.json │ │ ├── CC-BY-NC-ND-3.0.json │ │ ├── CC-BY-NC-ND-4.0.json │ │ ├── CC-BY-NC-SA-1.0.json │ │ ├── CC-BY-NC-SA-2.0-DE.json │ │ ├── CC-BY-NC-SA-2.0-FR.json │ │ ├── CC-BY-NC-SA-2.0-UK.json │ │ ├── CC-BY-NC-SA-2.0.json │ │ ├── CC-BY-NC-SA-2.5.json │ │ ├── CC-BY-NC-SA-3.0-DE.json │ │ ├── CC-BY-NC-SA-3.0-IGO.json │ │ ├── CC-BY-NC-SA-3.0.json │ │ ├── CC-BY-NC-SA-4.0.json │ │ ├── CC-BY-ND-1.0.json │ │ ├── CC-BY-ND-2.0.json │ │ ├── CC-BY-ND-2.5.json │ │ ├── CC-BY-ND-3.0-DE.json │ │ ├── CC-BY-ND-3.0.json │ │ ├── CC-BY-ND-4.0.json │ │ ├── CC-BY-SA-1.0.json │ │ ├── CC-BY-SA-2.0-UK.json │ │ ├── CC-BY-SA-2.0.json │ │ ├── CC-BY-SA-2.1-JP.json │ │ ├── CC-BY-SA-2.5.json │ │ ├── CC-BY-SA-3.0-AT.json │ │ ├── CC-BY-SA-3.0-DE.json │ │ ├── CC-BY-SA-3.0-IGO.json │ │ ├── CC-BY-SA-3.0.json │ │ ├── CC-BY-SA-4.0.json │ │ ├── CC-PDDC.json │ │ ├── CC-PDM-1.0.json │ │ ├── CC-SA-1.0.json │ │ ├── CC0-1.0.json │ │ ├── CDDL-1.0.json │ │ ├── CDDL-1.1.json │ │ ├── CDL-1.0.json │ │ ├── CDLA-Permissive-1.0.json │ │ ├── CDLA-Permissive-2.0.json │ │ ├── CDLA-Sharing-1.0.json │ │ ├── CECILL-1.0.json │ │ ├── CECILL-1.1.json │ │ ├── CECILL-2.0.json │ │ ├── CECILL-2.1.json │ │ ├── CECILL-B.json │ │ ├── CECILL-C.json │ │ ├── CERN-OHL-1.1.json │ │ ├── CERN-OHL-1.2.json │ │ ├── CERN-OHL-P-2.0.json │ │ ├── CERN-OHL-S-2.0.json │ │ ├── CERN-OHL-W-2.0.json │ │ ├── CFITSIO.json │ │ ├── CGAL-linking-exception.json │ │ ├── CLISP-exception-2.0.json │ │ ├── CMU-Mach-nodoc.json │ │ ├── CMU-Mach.json │ │ ├── CNRI-Jython.json │ │ ├── CNRI-Python-GPL-Compatible.json │ │ ├── CNRI-Python.json │ │ ├── COIL-1.0.json │ │ ├── CPAL-1.0.json │ │ ├── CPL-1.0.json │ │ ├── CPOL-1.02.json │ │ ├── CUA-OPL-1.0.json │ │ ├── Caldera-no-preamble.json │ │ ├── Caldera.json │ │ ├── Catharon.json │ │ ├── ClArtistic.json │ │ ├── Classpath-exception-2.0.json │ │ ├── Clips.json │ │ ├── Community-Spec-1.0.json │ │ ├── Condor-1.1.json │ │ ├── Cornell-Lossless-JPEG.json │ │ ├── Cronyx.json │ │ ├── Crossword.json │ │ ├── CrystalStacker.json │ │ ├── Cube.json │ │ ├── D-FSL-1.0.json │ │ ├── DEC-3-Clause.json │ │ ├── DL-DE-BY-2.0.json │ │ ├── DL-DE-ZERO-2.0.json │ │ ├── DOC.json │ │ ├── DRL-1.0.json │ │ ├── DRL-1.1.json │ │ ├── DSDP.json │ │ ├── DigiRule-FOSS-exception.json │ │ ├── DocBook-Schema.json │ │ ├── DocBook-Stylesheet.json │ │ ├── DocBook-XML.json │ │ ├── Dotseqn.json │ │ ├── ECL-1.0.json │ │ ├── ECL-2.0.json │ │ ├── EFL-1.0.json │ │ ├── EFL-2.0.json │ │ ├── EPICS.json │ │ ├── EPL-1.0.json │ │ ├── EPL-2.0.json │ │ ├── EUDatagrid.json │ │ ├── EUPL-1.0.json │ │ ├── EUPL-1.1.json │ │ ├── EUPL-1.2.json │ │ ├── Elastic-2.0.json │ │ ├── Entessa.json │ │ ├── ErlPL-1.1.json │ │ ├── Eurosym.json │ │ ├── FBM.json │ │ ├── FDK-AAC.json │ │ ├── FLTK-exception.json │ │ ├── FSFAP-no-warranty-disclaimer.json │ │ ├── FSFAP.json │ │ ├── FSFUL.json │ │ ├── FSFULLR.json │ │ ├── FSFULLRWD.json │ │ ├── FTL.json │ │ ├── Fair.json │ │ ├── Fawkes-Runtime-exception.json │ │ ├── Ferguson-Twofish.json │ │ ├── Font-exception-2.0.json │ │ ├── Frameworx-1.0.json │ │ ├── FreeBSD-DOC.json │ │ ├── FreeImage.json │ │ ├── Furuseth.json │ │ ├── GCC-exception-2.0-note.json │ │ ├── GCC-exception-2.0.json │ │ ├── GCC-exception-3.1.json │ │ ├── GCR-docs.json │ │ ├── GD.json │ │ ├── GFDL-1.1-invariants-only.json │ │ ├── GFDL-1.1-invariants-or-later.json │ │ ├── GFDL-1.1-no-invariants-only.json │ │ ├── GFDL-1.1-no-invariants-or-later.json │ │ ├── GFDL-1.1-only.json │ │ ├── GFDL-1.1-or-later.json │ │ ├── GFDL-1.2-invariants-only.json │ │ ├── GFDL-1.2-invariants-or-later.json │ │ ├── GFDL-1.2-no-invariants-only.json │ │ ├── GFDL-1.2-no-invariants-or-later.json │ │ ├── GFDL-1.2-only.json │ │ ├── GFDL-1.2-or-later.json │ │ ├── GFDL-1.3-invariants-only.json │ │ ├── GFDL-1.3-invariants-or-later.json │ │ ├── GFDL-1.3-no-invariants-only.json │ │ ├── GFDL-1.3-no-invariants-or-later.json │ │ ├── GFDL-1.3-only.json │ │ ├── GFDL-1.3-or-later.json │ │ ├── GL2PS.json │ │ ├── GLWTPL.json │ │ ├── GNAT-exception.json │ │ ├── GNOME-examples-exception.json │ │ ├── GNU-compiler-exception.json │ │ ├── GPL-1.0-only.json │ │ ├── GPL-1.0-or-later.json │ │ ├── GPL-2.0-only.json │ │ ├── GPL-2.0-or-later.json │ │ ├── GPL-3.0-389-ds-base-exception.json │ │ ├── GPL-3.0-interface-exception.json │ │ ├── GPL-3.0-linking-exception.json │ │ ├── GPL-3.0-linking-source-exception.json │ │ ├── GPL-3.0-only.json │ │ ├── GPL-3.0-or-later.json │ │ ├── GPL-CC-1.0.json │ │ ├── GStreamer-exception-2005.json │ │ ├── GStreamer-exception-2008.json │ │ ├── Giftware.json │ │ ├── Glide.json │ │ ├── Glulxe.json │ │ ├── Gmsh-exception.json │ │ ├── Graphics-Gems.json │ │ ├── Gutmann.json │ │ ├── HIDAPI.json │ │ ├── HP-1986.json │ │ ├── HP-1989.json │ │ ├── HPND-DEC.json │ │ ├── HPND-Fenneberg-Livingston.json │ │ ├── HPND-INRIA-IMAG.json │ │ ├── HPND-Intel.json │ │ ├── HPND-Kevlin-Henney.json │ │ ├── HPND-MIT-disclaimer.json │ │ ├── HPND-Markus-Kuhn.json │ │ ├── HPND-Netrek.json │ │ ├── HPND-Pbmplus.json │ │ ├── HPND-UC-export-US.json │ │ ├── HPND-UC.json │ │ ├── HPND-doc-sell.json │ │ ├── HPND-doc.json │ │ ├── HPND-export-US-acknowledgement.json │ │ ├── HPND-export-US-modify.json │ │ ├── HPND-export-US.json │ │ ├── HPND-export2-US.json │ │ ├── HPND-merchantability-variant.json │ │ ├── HPND-sell-MIT-disclaimer-xserver.json │ │ ├── HPND-sell-regexpr.json │ │ ├── HPND-sell-variant-MIT-disclaimer-rev.json │ │ ├── HPND-sell-variant-MIT-disclaimer.json │ │ ├── HPND-sell-variant.json │ │ ├── HPND.json │ │ ├── HTMLTIDY.json │ │ ├── HaskellReport.json │ │ ├── Hippocratic-2.1.json │ │ ├── IBM-pibs.json │ │ ├── ICU.json │ │ ├── IEC-Code-Components-EULA.json │ │ ├── IJG-short.json │ │ ├── IJG.json │ │ ├── IPA.json │ │ ├── IPL-1.0.json │ │ ├── ISC-Veillard.json │ │ ├── ISC.json │ │ ├── ImageMagick.json │ │ ├── Imlib2.json │ │ ├── Independent-modules-exception.json │ │ ├── Info-ZIP.json │ │ ├── Inner-Net-2.0.json │ │ ├── InnoSetup.json │ │ ├── Intel-ACPI.json │ │ ├── Intel.json │ │ ├── Interbase-1.0.json │ │ ├── JPL-image.json │ │ ├── JPNIC.json │ │ ├── JSON.json │ │ ├── Jam.json │ │ ├── JasPer-2.0.json │ │ ├── Kastrup.json │ │ ├── Kazlib.json │ │ ├── KiCad-libraries-exception.json │ │ ├── Knuth-CTAN.json │ │ ├── LAL-1.2.json │ │ ├── LAL-1.3.json │ │ ├── LGPL-2.0-only.json │ │ ├── LGPL-2.0-or-later.json │ │ ├── LGPL-2.1-only.json │ │ ├── LGPL-2.1-or-later.json │ │ ├── LGPL-3.0-linking-exception.json │ │ ├── LGPL-3.0-only.json │ │ ├── LGPL-3.0-or-later.json │ │ ├── LGPLLR.json │ │ ├── LLGPL.json │ │ ├── LLVM-exception.json │ │ ├── LOOP.json │ │ ├── LPD-document.json │ │ ├── LPL-1.0.json │ │ ├── LPL-1.02.json │ │ ├── LPPL-1.0.json │ │ ├── LPPL-1.1.json │ │ ├── LPPL-1.2.json │ │ ├── LPPL-1.3a.json │ │ ├── LPPL-1.3c.json │ │ ├── LZMA-SDK-9.11-to-9.20.json │ │ ├── LZMA-SDK-9.22.json │ │ ├── LZMA-exception.json │ │ ├── Latex2e-translated-notice.json │ │ ├── Latex2e.json │ │ ├── Leptonica.json │ │ ├── LiLiQ-P-1.1.json │ │ ├── LiLiQ-R-1.1.json │ │ ├── LiLiQ-Rplus-1.1.json │ │ ├── Libpng.json │ │ ├── Libtool-exception.json │ │ ├── Linux-OpenIB.json │ │ ├── Linux-man-pages-1-para.json │ │ ├── Linux-man-pages-copyleft-2-para.json │ │ ├── Linux-man-pages-copyleft-var.json │ │ ├── Linux-man-pages-copyleft.json │ │ ├── Linux-syscall-note.json │ │ ├── Lucida-Bitmap-Fonts.json │ │ ├── MIPS.json │ │ ├── MIT-0.json │ │ ├── MIT-CMU.json │ │ ├── MIT-Click.json │ │ ├── MIT-Festival.json │ │ ├── MIT-Khronos-old.json │ │ ├── MIT-Modern-Variant.json │ │ ├── MIT-Wu.json │ │ ├── MIT-advertising.json │ │ ├── MIT-enna.json │ │ ├── MIT-feh.json │ │ ├── MIT-open-group.json │ │ ├── MIT-testregex.json │ │ ├── MIT.json │ │ ├── MITNFA.json │ │ ├── MMIXware.json │ │ ├── MPEG-SSG.json │ │ ├── MPL-1.0.json │ │ ├── MPL-1.1.json │ │ ├── MPL-2.0-no-copyleft-exception.json │ │ ├── MPL-2.0.json │ │ ├── MS-LPL.json │ │ ├── MS-PL.json │ │ ├── MS-RL.json │ │ ├── MTLL.json │ │ ├── Mackerras-3-Clause-acknowledgment.json │ │ ├── Mackerras-3-Clause.json │ │ ├── MakeIndex.json │ │ ├── Martin-Birgmeier.json │ │ ├── McPhee-slideshow.json │ │ ├── Minpack.json │ │ ├── MirOS.json │ │ ├── Motosoto.json │ │ ├── MulanPSL-1.0.json │ │ ├── MulanPSL-2.0.json │ │ ├── Multics.json │ │ ├── Mup.json │ │ ├── NAIST-2003.json │ │ ├── NASA-1.3.json │ │ ├── NBPL-1.0.json │ │ ├── NCBI-PD.json │ │ ├── NCGL-UK-2.0.json │ │ ├── NCL.json │ │ ├── NCSA.json │ │ ├── NGPL.json │ │ ├── NICTA-1.0.json │ │ ├── NIST-PD-fallback.json │ │ ├── NIST-PD.json │ │ ├── NIST-Software.json │ │ ├── NLOD-1.0.json │ │ ├── NLOD-2.0.json │ │ ├── NLPL.json │ │ ├── NOSL.json │ │ ├── NPL-1.0.json │ │ ├── NPL-1.1.json │ │ ├── NPOSL-3.0.json │ │ ├── NRL.json │ │ ├── NTP-0.json │ │ ├── NTP.json │ │ ├── Naumen.json │ │ ├── NetCDF.json │ │ ├── Newsletr.json │ │ ├── Nokia.json │ │ ├── Noweb.json │ │ ├── O-UDA-1.0.json │ │ ├── OAR.json │ │ ├── OCCT-PL.json │ │ ├── OCCT-exception-1.0.json │ │ ├── OCLC-2.0.json │ │ ├── OCaml-LGPL-linking-exception.json │ │ ├── ODC-By-1.0.json │ │ ├── ODbL-1.0.json │ │ ├── OFFIS.json │ │ ├── OFL-1.0-RFN.json │ │ ├── OFL-1.0-no-RFN.json │ │ ├── OFL-1.0.json │ │ ├── OFL-1.1-RFN.json │ │ ├── OFL-1.1-no-RFN.json │ │ ├── OFL-1.1.json │ │ ├── OGC-1.0.json │ │ ├── OGDL-Taiwan-1.0.json │ │ ├── OGL-Canada-2.0.json │ │ ├── OGL-UK-1.0.json │ │ ├── OGL-UK-2.0.json │ │ ├── OGL-UK-3.0.json │ │ ├── OGTSL.json │ │ ├── OLDAP-1.1.json │ │ ├── OLDAP-1.2.json │ │ ├── OLDAP-1.3.json │ │ ├── OLDAP-1.4.json │ │ ├── OLDAP-2.0.1.json │ │ ├── OLDAP-2.0.json │ │ ├── OLDAP-2.1.json │ │ ├── OLDAP-2.2.1.json │ │ ├── OLDAP-2.2.2.json │ │ ├── OLDAP-2.2.json │ │ ├── OLDAP-2.3.json │ │ ├── OLDAP-2.4.json │ │ ├── OLDAP-2.5.json │ │ ├── OLDAP-2.6.json │ │ ├── OLDAP-2.7.json │ │ ├── OLDAP-2.8.json │ │ ├── OLFL-1.3.json │ │ ├── OML.json │ │ ├── OPL-1.0.json │ │ ├── OPL-UK-3.0.json │ │ ├── OPUBL-1.0.json │ │ ├── OSET-PL-2.1.json │ │ ├── OSL-1.0.json │ │ ├── OSL-1.1.json │ │ ├── OSL-2.0.json │ │ ├── OSL-2.1.json │ │ ├── OSL-3.0.json │ │ ├── OpenJDK-assembly-exception-1.0.json │ │ ├── OpenPBS-2.3.json │ │ ├── OpenSSL-standalone.json │ │ ├── OpenSSL.json │ │ ├── OpenVision.json │ │ ├── PADL.json │ │ ├── PCRE2-exception.json │ │ ├── PDDL-1.0.json │ │ ├── PHP-3.0.json │ │ ├── PHP-3.01.json │ │ ├── PPL.json │ │ ├── PS-or-PDF-font-exception-20170817.json │ │ ├── PSF-2.0.json │ │ ├── Parity-6.0.0.json │ │ ├── Parity-7.0.0.json │ │ ├── Pixar.json │ │ ├── Plexus.json │ │ ├── PolyForm-Noncommercial-1.0.0.json │ │ ├── PolyForm-Small-Business-1.0.0.json │ │ ├── PostgreSQL.json │ │ ├── Python-2.0.1.json │ │ ├── Python-2.0.json │ │ ├── QPL-1.0-INRIA-2004-exception.json │ │ ├── QPL-1.0-INRIA-2004.json │ │ ├── QPL-1.0.json │ │ ├── Qhull.json │ │ ├── Qt-GPL-exception-1.0.json │ │ ├── Qt-LGPL-exception-1.1.json │ │ ├── Qwt-exception-1.0.json │ │ ├── RHeCos-1.1.json │ │ ├── RPL-1.1.json │ │ ├── RPL-1.5.json │ │ ├── RPSL-1.0.json │ │ ├── RRDtool-FLOSS-exception-2.0.json │ │ ├── RSA-MD.json │ │ ├── RSCPL.json │ │ ├── Rdisc.json │ │ ├── Ruby-pty.json │ │ ├── Ruby.json │ │ ├── SANE-exception.json │ │ ├── SAX-PD-2.0.json │ │ ├── SAX-PD.json │ │ ├── SCEA.json │ │ ├── SGI-B-1.0.json │ │ ├── SGI-B-1.1.json │ │ ├── SGI-B-2.0.json │ │ ├── SGI-OpenGL.json │ │ ├── SGP4.json │ │ ├── SHL-0.5.json │ │ ├── SHL-0.51.json │ │ ├── SHL-2.0.json │ │ ├── SHL-2.1.json │ │ ├── SISSL-1.2.json │ │ ├── SISSL.json │ │ ├── SL.json │ │ ├── SMAIL-GPL.json │ │ ├── SMLNJ.json │ │ ├── SMPPL.json │ │ ├── SNIA.json │ │ ├── SPL-1.0.json │ │ ├── SSH-OpenSSH.json │ │ ├── SSH-short.json │ │ ├── SSLeay-standalone.json │ │ ├── SSPL-1.0.json │ │ ├── SWI-exception.json │ │ ├── SWL.json │ │ ├── Saxpath.json │ │ ├── SchemeReport.json │ │ ├── Sendmail-8.23.json │ │ ├── Sendmail-Open-Source-1.1.json │ │ ├── Sendmail.json │ │ ├── SimPL-2.0.json │ │ ├── Sleepycat.json │ │ ├── Soundex.json │ │ ├── Spencer-86.json │ │ ├── Spencer-94.json │ │ ├── Spencer-99.json │ │ ├── SugarCRM-1.1.3.json │ │ ├── Sun-PPP-2000.json │ │ ├── Sun-PPP.json │ │ ├── SunPro.json │ │ ├── Swift-exception.json │ │ ├── Symlinks.json │ │ ├── TAPR-OHL-1.0.json │ │ ├── TCL.json │ │ ├── TCP-wrappers.json │ │ ├── TGPPL-1.0.json │ │ ├── TMate.json │ │ ├── TORQUE-1.1.json │ │ ├── TOSL.json │ │ ├── TPDL.json │ │ ├── TPL-1.0.json │ │ ├── TTWL.json │ │ ├── TTYP0.json │ │ ├── TU-Berlin-1.0.json │ │ ├── TU-Berlin-2.0.json │ │ ├── TermReadKey.json │ │ ├── Texinfo-exception.json │ │ ├── ThirdEye.json │ │ ├── TrustedQSL.json │ │ ├── UBDL-exception.json │ │ ├── UCAR.json │ │ ├── UCL-1.0.json │ │ ├── UMich-Merit.json │ │ ├── UPL-1.0.json │ │ ├── URT-RLE.json │ │ ├── Ubuntu-font-1.0.json │ │ ├── Unicode-3.0.json │ │ ├── Unicode-DFS-2015.json │ │ ├── Unicode-DFS-2016.json │ │ ├── Unicode-TOU.json │ │ ├── Universal-FOSS-exception-1.0.json │ │ ├── UnixCrypt.json │ │ ├── Unlicense.json │ │ ├── VOSTROM.json │ │ ├── VSL-1.0.json │ │ ├── Vim.json │ │ ├── W3C-19980720.json │ │ ├── W3C-20150513.json │ │ ├── W3C.json │ │ ├── WTFPL.json │ │ ├── Watcom-1.0.json │ │ ├── Widget-Workshop.json │ │ ├── Wsuipa.json │ │ ├── WxWindows-exception-3.1.json │ │ ├── X11-distribute-modifications-variant.json │ │ ├── X11-swapped.json │ │ ├── X11.json │ │ ├── XFree86-1.1.json │ │ ├── XSkat.json │ │ ├── Xdebug-1.03.json │ │ ├── Xerox.json │ │ ├── Xfig.json │ │ ├── Xnet.json │ │ ├── YPL-1.0.json │ │ ├── YPL-1.1.json │ │ ├── ZPL-1.1.json │ │ ├── ZPL-2.0.json │ │ ├── ZPL-2.1.json │ │ ├── Zed.json │ │ ├── Zeeff.json │ │ ├── Zend-2.0.json │ │ ├── Zimbra-1.3.json │ │ ├── Zimbra-1.4.json │ │ ├── Zlib.json │ │ ├── any-OSI-perl-modules.json │ │ ├── any-OSI.json │ │ ├── bcrypt-Solar-Designer.json │ │ ├── blessing.json │ │ ├── bzip2-1.0.6.json │ │ ├── check-cvs.json │ │ ├── checkmk.json │ │ ├── copyleft-next-0.3.0.json │ │ ├── copyleft-next-0.3.1.json │ │ ├── cryptsetup-OpenSSL-exception.json │ │ ├── curl.json │ │ ├── cve-tou.json │ │ ├── diffmark.json │ │ ├── dtoa.json │ │ ├── dvipdfm.json │ │ ├── eCos-exception-2.0.json │ │ ├── eGenix.json │ │ ├── erlang-otp-linking-exception.json │ │ ├── etalab-2.0.json │ │ ├── fmt-exception.json │ │ ├── freertos-exception-2.0.json │ │ ├── fwlw.json │ │ ├── gSOAP-1.3b.json │ │ ├── generic-xts.json │ │ ├── gnu-javamail-exception.json │ │ ├── gnuplot.json │ │ ├── gtkbook.json │ │ ├── harbour-exception.json │ │ ├── hdparm.json │ │ ├── i2p-gpl-java-exception.json │ │ ├── iMatix.json │ │ ├── libpng-2.0.json │ │ ├── libpri-OpenH323-exception.json │ │ ├── libselinux-1.0.json │ │ ├── libtiff.json │ │ ├── libutil-David-Nugent.json │ │ ├── lsof.json │ │ ├── magaz.json │ │ ├── mailprio.json │ │ ├── metamail.json │ │ ├── mif-exception.json │ │ ├── mpi-permissive.json │ │ ├── mpich2.json │ │ ├── mplus.json │ │ ├── mxml-exception.json │ │ ├── openvpn-openssl-exception.json │ │ ├── pkgconf.json │ │ ├── pnmstitch.json │ │ ├── psfrag.json │ │ ├── psutils.json │ │ ├── python-ldap.json │ │ ├── radvd.json │ │ ├── romic-exception.json │ │ ├── snprintf.json │ │ ├── softSurfer.json │ │ ├── ssh-keyscan.json │ │ ├── stunnel-exception.json │ │ ├── swrule.json │ │ ├── threeparttable.json │ │ ├── u-boot-exception-2.0.json │ │ ├── ulem.json │ │ ├── vsftpd-openssl-exception.json │ │ ├── w3m.json │ │ ├── wwl.json │ │ ├── x11vnc-openssl-exception.json │ │ ├── xinetd.json │ │ ├── xkeyboard-config-Zinoviev.json │ │ ├── xlock.json │ │ ├── xpp.json │ │ ├── xzoom.json │ │ └── zlib-acknowledgement.json │ ├── template │ │ ├── 0BSD.template.txt │ │ ├── 389-exception.template.txt │ │ ├── 3D-Slicer-1.0.template.txt │ │ ├── AAL.template.txt │ │ ├── ADSL.template.txt │ │ ├── AFL-1.1.template.txt │ │ ├── AFL-1.2.template.txt │ │ ├── AFL-2.0.template.txt │ │ ├── AFL-2.1.template.txt │ │ ├── AFL-3.0.template.txt │ │ ├── AGPL-1.0-only.template.txt │ │ ├── AGPL-1.0-or-later.template.txt │ │ ├── AGPL-3.0-only.template.txt │ │ ├── AGPL-3.0-or-later.template.txt │ │ ├── AMD-newlib.template.txt │ │ ├── AMDPLPA.template.txt │ │ ├── AML-glslang.template.txt │ │ ├── AML.template.txt │ │ ├── AMPAS.template.txt │ │ ├── ANTLR-PD-fallback.template.txt │ │ ├── ANTLR-PD.template.txt │ │ ├── APAFML.template.txt │ │ ├── APL-1.0.template.txt │ │ ├── APSL-1.0.template.txt │ │ ├── APSL-1.1.template.txt │ │ ├── APSL-1.2.template.txt │ │ ├── APSL-2.0.template.txt │ │ ├── ASWF-Digital-Assets-1.0.template.txt │ │ ├── ASWF-Digital-Assets-1.1.template.txt │ │ ├── Abstyles.template.txt │ │ ├── AdaCore-doc.template.txt │ │ ├── Adobe-2006.template.txt │ │ ├── Adobe-Display-PostScript.template.txt │ │ ├── Adobe-Glyph.template.txt │ │ ├── Adobe-Utopia.template.txt │ │ ├── Afmparse.template.txt │ │ ├── Aladdin.template.txt │ │ ├── Apache-1.0.template.txt │ │ ├── Apache-1.1.template.txt │ │ ├── Apache-2.0.template.txt │ │ ├── App-s2p.template.txt │ │ ├── Arphic-1999.template.txt │ │ ├── Artistic-1.0-Perl.template.txt │ │ ├── Artistic-1.0-cl8.template.txt │ │ ├── Artistic-1.0.template.txt │ │ ├── Artistic-2.0.template.txt │ │ ├── Asterisk-exception.template.txt │ │ ├── Asterisk-linking-protocols-exception.template.txt │ │ ├── Autoconf-exception-2.0.template.txt │ │ ├── Autoconf-exception-3.0.template.txt │ │ ├── Autoconf-exception-generic-3.0.template.txt │ │ ├── Autoconf-exception-generic.template.txt │ │ ├── Autoconf-exception-macro.template.txt │ │ ├── BSD-1-Clause.template.txt │ │ ├── BSD-2-Clause-Darwin.template.txt │ │ ├── BSD-2-Clause-Patent.template.txt │ │ ├── BSD-2-Clause-Views.template.txt │ │ ├── BSD-2-Clause-first-lines.template.txt │ │ ├── BSD-2-Clause.template.txt │ │ ├── BSD-3-Clause-Attribution.template.txt │ │ ├── BSD-3-Clause-Clear.template.txt │ │ ├── BSD-3-Clause-HP.template.txt │ │ ├── BSD-3-Clause-LBNL.template.txt │ │ ├── BSD-3-Clause-Modification.template.txt │ │ ├── BSD-3-Clause-No-Military-License.template.txt │ │ ├── BSD-3-Clause-No-Nuclear-License-2014.template.txt │ │ ├── BSD-3-Clause-No-Nuclear-License.template.txt │ │ ├── BSD-3-Clause-No-Nuclear-Warranty.template.txt │ │ ├── BSD-3-Clause-Open-MPI.template.txt │ │ ├── BSD-3-Clause-Sun.template.txt │ │ ├── BSD-3-Clause-acpica.template.txt │ │ ├── BSD-3-Clause-flex.template.txt │ │ ├── BSD-3-Clause.template.txt │ │ ├── BSD-4-Clause-Shortened.template.txt │ │ ├── BSD-4-Clause-UC.template.txt │ │ ├── BSD-4-Clause.template.txt │ │ ├── BSD-4.3RENO.template.txt │ │ ├── BSD-4.3TAHOE.template.txt │ │ ├── BSD-Advertising-Acknowledgement.template.txt │ │ ├── BSD-Attribution-HPND-disclaimer.template.txt │ │ ├── BSD-Inferno-Nettverk.template.txt │ │ ├── BSD-Protection.template.txt │ │ ├── BSD-Source-Code.template.txt │ │ ├── BSD-Source-beginning-file.template.txt │ │ ├── BSD-Systemics-W3Works.template.txt │ │ ├── BSD-Systemics.template.txt │ │ ├── BSL-1.0.template.txt │ │ ├── BUSL-1.1.template.txt │ │ ├── Baekmuk.template.txt │ │ ├── Bahyph.template.txt │ │ ├── Barr.template.txt │ │ ├── Beerware.template.txt │ │ ├── Bison-exception-1.24.template.txt │ │ ├── Bison-exception-2.2.template.txt │ │ ├── BitTorrent-1.0.template.txt │ │ ├── BitTorrent-1.1.template.txt │ │ ├── Bitstream-Charter.template.txt │ │ ├── Bitstream-Vera.template.txt │ │ ├── BlueOak-1.0.0.template.txt │ │ ├── Boehm-GC-without-fee.template.txt │ │ ├── Boehm-GC.template.txt │ │ ├── Bootloader-exception.template.txt │ │ ├── Borceux.template.txt │ │ ├── Brian-Gladman-2-Clause.template.txt │ │ ├── Brian-Gladman-3-Clause.template.txt │ │ ├── C-UDA-1.0.template.txt │ │ ├── CAL-1.0-Combined-Work-Exception.template.txt │ │ ├── CAL-1.0.template.txt │ │ ├── CATOSL-1.1.template.txt │ │ ├── CC-BY-1.0.template.txt │ │ ├── CC-BY-2.0.template.txt │ │ ├── CC-BY-2.5-AU.template.txt │ │ ├── CC-BY-2.5.template.txt │ │ ├── CC-BY-3.0-AT.template.txt │ │ ├── CC-BY-3.0-AU.template.txt │ │ ├── CC-BY-3.0-DE.template.txt │ │ ├── CC-BY-3.0-IGO.template.txt │ │ ├── CC-BY-3.0-NL.template.txt │ │ ├── CC-BY-3.0-US.template.txt │ │ ├── CC-BY-3.0.template.txt │ │ ├── CC-BY-4.0.template.txt │ │ ├── CC-BY-NC-1.0.template.txt │ │ ├── CC-BY-NC-2.0.template.txt │ │ ├── CC-BY-NC-2.5.template.txt │ │ ├── CC-BY-NC-3.0-DE.template.txt │ │ ├── CC-BY-NC-3.0.template.txt │ │ ├── CC-BY-NC-4.0.template.txt │ │ ├── CC-BY-NC-ND-1.0.template.txt │ │ ├── CC-BY-NC-ND-2.0.template.txt │ │ ├── CC-BY-NC-ND-2.5.template.txt │ │ ├── CC-BY-NC-ND-3.0-DE.template.txt │ │ ├── CC-BY-NC-ND-3.0-IGO.template.txt │ │ ├── CC-BY-NC-ND-3.0.template.txt │ │ ├── CC-BY-NC-ND-4.0.template.txt │ │ ├── CC-BY-NC-SA-1.0.template.txt │ │ ├── CC-BY-NC-SA-2.0-DE.template.txt │ │ ├── CC-BY-NC-SA-2.0-FR.template.txt │ │ ├── CC-BY-NC-SA-2.0-UK.template.txt │ │ ├── CC-BY-NC-SA-2.0.template.txt │ │ ├── CC-BY-NC-SA-2.5.template.txt │ │ ├── CC-BY-NC-SA-3.0-DE.template.txt │ │ ├── CC-BY-NC-SA-3.0-IGO.template.txt │ │ ├── CC-BY-NC-SA-3.0.template.txt │ │ ├── CC-BY-NC-SA-4.0.template.txt │ │ ├── CC-BY-ND-1.0.template.txt │ │ ├── CC-BY-ND-2.0.template.txt │ │ ├── CC-BY-ND-2.5.template.txt │ │ ├── CC-BY-ND-3.0-DE.template.txt │ │ ├── CC-BY-ND-3.0.template.txt │ │ ├── CC-BY-ND-4.0.template.txt │ │ ├── CC-BY-SA-1.0.template.txt │ │ ├── CC-BY-SA-2.0-UK.template.txt │ │ ├── CC-BY-SA-2.0.template.txt │ │ ├── CC-BY-SA-2.1-JP.template.txt │ │ ├── CC-BY-SA-2.5.template.txt │ │ ├── CC-BY-SA-3.0-AT.template.txt │ │ ├── CC-BY-SA-3.0-DE.template.txt │ │ ├── CC-BY-SA-3.0-IGO.template.txt │ │ ├── CC-BY-SA-3.0.template.txt │ │ ├── CC-BY-SA-4.0.template.txt │ │ ├── CC-PDDC.template.txt │ │ ├── CC-PDM-1.0.template.txt │ │ ├── CC-SA-1.0.template.txt │ │ ├── CC0-1.0.template.txt │ │ ├── CDDL-1.0.template.txt │ │ ├── CDDL-1.1.template.txt │ │ ├── CDL-1.0.template.txt │ │ ├── CDLA-Permissive-1.0.template.txt │ │ ├── CDLA-Permissive-2.0.template.txt │ │ ├── CDLA-Sharing-1.0.template.txt │ │ ├── CECILL-1.0.template.txt │ │ ├── CECILL-1.1.template.txt │ │ ├── CECILL-2.0.template.txt │ │ ├── CECILL-2.1.template.txt │ │ ├── CECILL-B.template.txt │ │ ├── CECILL-C.template.txt │ │ ├── CERN-OHL-1.1.template.txt │ │ ├── CERN-OHL-1.2.template.txt │ │ ├── CERN-OHL-P-2.0.template.txt │ │ ├── CERN-OHL-S-2.0.template.txt │ │ ├── CERN-OHL-W-2.0.template.txt │ │ ├── CFITSIO.template.txt │ │ ├── CGAL-linking-exception.template.txt │ │ ├── CLISP-exception-2.0.template.txt │ │ ├── CMU-Mach-nodoc.template.txt │ │ ├── CMU-Mach.template.txt │ │ ├── CNRI-Jython.template.txt │ │ ├── CNRI-Python-GPL-Compatible.template.txt │ │ ├── CNRI-Python.template.txt │ │ ├── COIL-1.0.template.txt │ │ ├── CPAL-1.0.template.txt │ │ ├── CPL-1.0.template.txt │ │ ├── CPOL-1.02.template.txt │ │ ├── CUA-OPL-1.0.template.txt │ │ ├── Caldera-no-preamble.template.txt │ │ ├── Caldera.template.txt │ │ ├── Catharon.template.txt │ │ ├── ClArtistic.template.txt │ │ ├── Classpath-exception-2.0.template.txt │ │ ├── Clips.template.txt │ │ ├── Community-Spec-1.0.template.txt │ │ ├── Condor-1.1.template.txt │ │ ├── Cornell-Lossless-JPEG.template.txt │ │ ├── Cronyx.template.txt │ │ ├── Crossword.template.txt │ │ ├── CrystalStacker.template.txt │ │ ├── Cube.template.txt │ │ ├── D-FSL-1.0.template.txt │ │ ├── DEC-3-Clause.template.txt │ │ ├── DL-DE-BY-2.0.template.txt │ │ ├── DL-DE-ZERO-2.0.template.txt │ │ ├── DOC.template.txt │ │ ├── DRL-1.0.template.txt │ │ ├── DRL-1.1.template.txt │ │ ├── DSDP.template.txt │ │ ├── DigiRule-FOSS-exception.template.txt │ │ ├── DocBook-Schema.template.txt │ │ ├── DocBook-Stylesheet.template.txt │ │ ├── DocBook-XML.template.txt │ │ ├── Dotseqn.template.txt │ │ ├── ECL-1.0.template.txt │ │ ├── ECL-2.0.template.txt │ │ ├── EFL-1.0.template.txt │ │ ├── EFL-2.0.template.txt │ │ ├── EPICS.template.txt │ │ ├── EPL-1.0.template.txt │ │ ├── EPL-2.0.template.txt │ │ ├── EUDatagrid.template.txt │ │ ├── EUPL-1.0.template.txt │ │ ├── EUPL-1.1.template.txt │ │ ├── EUPL-1.2.template.txt │ │ ├── Elastic-2.0.template.txt │ │ ├── Entessa.template.txt │ │ ├── ErlPL-1.1.template.txt │ │ ├── Eurosym.template.txt │ │ ├── FBM.template.txt │ │ ├── FDK-AAC.template.txt │ │ ├── FLTK-exception.template.txt │ │ ├── FSFAP-no-warranty-disclaimer.template.txt │ │ ├── FSFAP.template.txt │ │ ├── FSFUL.template.txt │ │ ├── FSFULLR.template.txt │ │ ├── FSFULLRWD.template.txt │ │ ├── FTL.template.txt │ │ ├── Fair.template.txt │ │ ├── Fawkes-Runtime-exception.template.txt │ │ ├── Ferguson-Twofish.template.txt │ │ ├── Font-exception-2.0.template.txt │ │ ├── Frameworx-1.0.template.txt │ │ ├── FreeBSD-DOC.template.txt │ │ ├── FreeImage.template.txt │ │ ├── Furuseth.template.txt │ │ ├── GCC-exception-2.0-note.template.txt │ │ ├── GCC-exception-2.0.template.txt │ │ ├── GCC-exception-3.1.template.txt │ │ ├── GCR-docs.template.txt │ │ ├── GD.template.txt │ │ ├── GFDL-1.1-invariants-only.template.txt │ │ ├── GFDL-1.1-invariants-or-later.template.txt │ │ ├── GFDL-1.1-no-invariants-only.template.txt │ │ ├── GFDL-1.1-no-invariants-or-later.template.txt │ │ ├── GFDL-1.1-only.template.txt │ │ ├── GFDL-1.1-or-later.template.txt │ │ ├── GFDL-1.2-invariants-only.template.txt │ │ ├── GFDL-1.2-invariants-or-later.template.txt │ │ ├── GFDL-1.2-no-invariants-only.template.txt │ │ ├── GFDL-1.2-no-invariants-or-later.template.txt │ │ ├── GFDL-1.2-only.template.txt │ │ ├── GFDL-1.2-or-later.template.txt │ │ ├── GFDL-1.3-invariants-only.template.txt │ │ ├── GFDL-1.3-invariants-or-later.template.txt │ │ ├── GFDL-1.3-no-invariants-only.template.txt │ │ ├── GFDL-1.3-no-invariants-or-later.template.txt │ │ ├── GFDL-1.3-only.template.txt │ │ ├── GFDL-1.3-or-later.template.txt │ │ ├── GL2PS.template.txt │ │ ├── GLWTPL.template.txt │ │ ├── GNAT-exception.template.txt │ │ ├── GNOME-examples-exception.template.txt │ │ ├── GNU-compiler-exception.template.txt │ │ ├── GPL-1.0-only.template.txt │ │ ├── GPL-1.0-or-later.template.txt │ │ ├── GPL-2.0-only.template.txt │ │ ├── GPL-2.0-or-later.template.txt │ │ ├── GPL-3.0-389-ds-base-exception.template.txt │ │ ├── GPL-3.0-interface-exception.template.txt │ │ ├── GPL-3.0-linking-exception.template.txt │ │ ├── GPL-3.0-linking-source-exception.template.txt │ │ ├── GPL-3.0-only.template.txt │ │ ├── GPL-3.0-or-later.template.txt │ │ ├── GPL-CC-1.0.template.txt │ │ ├── GStreamer-exception-2005.template.txt │ │ ├── GStreamer-exception-2008.template.txt │ │ ├── Giftware.template.txt │ │ ├── Glide.template.txt │ │ ├── Glulxe.template.txt │ │ ├── Gmsh-exception.template.txt │ │ ├── Graphics-Gems.template.txt │ │ ├── Gutmann.template.txt │ │ ├── HIDAPI.template.txt │ │ ├── HP-1986.template.txt │ │ ├── HP-1989.template.txt │ │ ├── HPND-DEC.template.txt │ │ ├── HPND-Fenneberg-Livingston.template.txt │ │ ├── HPND-INRIA-IMAG.template.txt │ │ ├── HPND-Intel.template.txt │ │ ├── HPND-Kevlin-Henney.template.txt │ │ ├── HPND-MIT-disclaimer.template.txt │ │ ├── HPND-Markus-Kuhn.template.txt │ │ ├── HPND-Netrek.template.txt │ │ ├── HPND-Pbmplus.template.txt │ │ ├── HPND-UC-export-US.template.txt │ │ ├── HPND-UC.template.txt │ │ ├── HPND-doc-sell.template.txt │ │ ├── HPND-doc.template.txt │ │ ├── HPND-export-US-acknowledgement.template.txt │ │ ├── HPND-export-US-modify.template.txt │ │ ├── HPND-export-US.template.txt │ │ ├── HPND-export2-US.template.txt │ │ ├── HPND-merchantability-variant.template.txt │ │ ├── HPND-sell-MIT-disclaimer-xserver.template.txt │ │ ├── HPND-sell-regexpr.template.txt │ │ ├── HPND-sell-variant-MIT-disclaimer-rev.template.txt │ │ ├── HPND-sell-variant-MIT-disclaimer.template.txt │ │ ├── HPND-sell-variant.template.txt │ │ ├── HPND.template.txt │ │ ├── HTMLTIDY.template.txt │ │ ├── HaskellReport.template.txt │ │ ├── Hippocratic-2.1.template.txt │ │ ├── IBM-pibs.template.txt │ │ ├── ICU.template.txt │ │ ├── IEC-Code-Components-EULA.template.txt │ │ ├── IJG-short.template.txt │ │ ├── IJG.template.txt │ │ ├── IPA.template.txt │ │ ├── IPL-1.0.template.txt │ │ ├── ISC-Veillard.template.txt │ │ ├── ISC.template.txt │ │ ├── ImageMagick.template.txt │ │ ├── Imlib2.template.txt │ │ ├── Independent-modules-exception.template.txt │ │ ├── Info-ZIP.template.txt │ │ ├── Inner-Net-2.0.template.txt │ │ ├── InnoSetup.template.txt │ │ ├── Intel-ACPI.template.txt │ │ ├── Intel.template.txt │ │ ├── Interbase-1.0.template.txt │ │ ├── JPL-image.template.txt │ │ ├── JPNIC.template.txt │ │ ├── JSON.template.txt │ │ ├── Jam.template.txt │ │ ├── JasPer-2.0.template.txt │ │ ├── Kastrup.template.txt │ │ ├── Kazlib.template.txt │ │ ├── KiCad-libraries-exception.template.txt │ │ ├── Knuth-CTAN.template.txt │ │ ├── LAL-1.2.template.txt │ │ ├── LAL-1.3.template.txt │ │ ├── LGPL-2.0-only.template.txt │ │ ├── LGPL-2.0-or-later.template.txt │ │ ├── LGPL-2.1-only.template.txt │ │ ├── LGPL-2.1-or-later.template.txt │ │ ├── LGPL-3.0-linking-exception.template.txt │ │ ├── LGPL-3.0-only.template.txt │ │ ├── LGPL-3.0-or-later.template.txt │ │ ├── LGPLLR.template.txt │ │ ├── LLGPL.template.txt │ │ ├── LLVM-exception.template.txt │ │ ├── LOOP.template.txt │ │ ├── LPD-document.template.txt │ │ ├── LPL-1.0.template.txt │ │ ├── LPL-1.02.template.txt │ │ ├── LPPL-1.0.template.txt │ │ ├── LPPL-1.1.template.txt │ │ ├── LPPL-1.2.template.txt │ │ ├── LPPL-1.3a.template.txt │ │ ├── LPPL-1.3c.template.txt │ │ ├── LZMA-SDK-9.11-to-9.20.template.txt │ │ ├── LZMA-SDK-9.22.template.txt │ │ ├── LZMA-exception.template.txt │ │ ├── Latex2e-translated-notice.template.txt │ │ ├── Latex2e.template.txt │ │ ├── Leptonica.template.txt │ │ ├── LiLiQ-P-1.1.template.txt │ │ ├── LiLiQ-R-1.1.template.txt │ │ ├── LiLiQ-Rplus-1.1.template.txt │ │ ├── Libpng.template.txt │ │ ├── Libtool-exception.template.txt │ │ ├── Linux-OpenIB.template.txt │ │ ├── Linux-man-pages-1-para.template.txt │ │ ├── Linux-man-pages-copyleft-2-para.template.txt │ │ ├── Linux-man-pages-copyleft-var.template.txt │ │ ├── Linux-man-pages-copyleft.template.txt │ │ ├── Linux-syscall-note.template.txt │ │ ├── Lucida-Bitmap-Fonts.template.txt │ │ ├── MIPS.template.txt │ │ ├── MIT-0.template.txt │ │ ├── MIT-CMU.template.txt │ │ ├── MIT-Click.template.txt │ │ ├── MIT-Festival.template.txt │ │ ├── MIT-Khronos-old.template.txt │ │ ├── MIT-Modern-Variant.template.txt │ │ ├── MIT-Wu.template.txt │ │ ├── MIT-advertising.template.txt │ │ ├── MIT-enna.template.txt │ │ ├── MIT-feh.template.txt │ │ ├── MIT-open-group.template.txt │ │ ├── MIT-testregex.template.txt │ │ ├── MIT.template.txt │ │ ├── MITNFA.template.txt │ │ ├── MMIXware.template.txt │ │ ├── MPEG-SSG.template.txt │ │ ├── MPL-1.0.template.txt │ │ ├── MPL-1.1.template.txt │ │ ├── MPL-2.0-no-copyleft-exception.template.txt │ │ ├── MPL-2.0.template.txt │ │ ├── MS-LPL.template.txt │ │ ├── MS-PL.template.txt │ │ ├── MS-RL.template.txt │ │ ├── MTLL.template.txt │ │ ├── Mackerras-3-Clause-acknowledgment.template.txt │ │ ├── Mackerras-3-Clause.template.txt │ │ ├── MakeIndex.template.txt │ │ ├── Martin-Birgmeier.template.txt │ │ ├── McPhee-slideshow.template.txt │ │ ├── Minpack.template.txt │ │ ├── MirOS.template.txt │ │ ├── Motosoto.template.txt │ │ ├── MulanPSL-1.0.template.txt │ │ ├── MulanPSL-2.0.template.txt │ │ ├── Multics.template.txt │ │ ├── Mup.template.txt │ │ ├── NAIST-2003.template.txt │ │ ├── NASA-1.3.template.txt │ │ ├── NBPL-1.0.template.txt │ │ ├── NCBI-PD.template.txt │ │ ├── NCGL-UK-2.0.template.txt │ │ ├── NCL.template.txt │ │ ├── NCSA.template.txt │ │ ├── NGPL.template.txt │ │ ├── NICTA-1.0.template.txt │ │ ├── NIST-PD-fallback.template.txt │ │ ├── NIST-PD.template.txt │ │ ├── NIST-Software.template.txt │ │ ├── NLOD-1.0.template.txt │ │ ├── NLOD-2.0.template.txt │ │ ├── NLPL.template.txt │ │ ├── NOSL.template.txt │ │ ├── NPL-1.0.template.txt │ │ ├── NPL-1.1.template.txt │ │ ├── NPOSL-3.0.template.txt │ │ ├── NRL.template.txt │ │ ├── NTP-0.template.txt │ │ ├── NTP.template.txt │ │ ├── Naumen.template.txt │ │ ├── NetCDF.template.txt │ │ ├── Newsletr.template.txt │ │ ├── Nokia.template.txt │ │ ├── Noweb.template.txt │ │ ├── O-UDA-1.0.template.txt │ │ ├── OAR.template.txt │ │ ├── OCCT-PL.template.txt │ │ ├── OCCT-exception-1.0.template.txt │ │ ├── OCLC-2.0.template.txt │ │ ├── OCaml-LGPL-linking-exception.template.txt │ │ ├── ODC-By-1.0.template.txt │ │ ├── ODbL-1.0.template.txt │ │ ├── OFFIS.template.txt │ │ ├── OFL-1.0-RFN.template.txt │ │ ├── OFL-1.0-no-RFN.template.txt │ │ ├── OFL-1.0.template.txt │ │ ├── OFL-1.1-RFN.template.txt │ │ ├── OFL-1.1-no-RFN.template.txt │ │ ├── OFL-1.1.template.txt │ │ ├── OGC-1.0.template.txt │ │ ├── OGDL-Taiwan-1.0.template.txt │ │ ├── OGL-Canada-2.0.template.txt │ │ ├── OGL-UK-1.0.template.txt │ │ ├── OGL-UK-2.0.template.txt │ │ ├── OGL-UK-3.0.template.txt │ │ ├── OGTSL.template.txt │ │ ├── OLDAP-1.1.template.txt │ │ ├── OLDAP-1.2.template.txt │ │ ├── OLDAP-1.3.template.txt │ │ ├── OLDAP-1.4.template.txt │ │ ├── OLDAP-2.0.1.template.txt │ │ ├── OLDAP-2.0.template.txt │ │ ├── OLDAP-2.1.template.txt │ │ ├── OLDAP-2.2.1.template.txt │ │ ├── OLDAP-2.2.2.template.txt │ │ ├── OLDAP-2.2.template.txt │ │ ├── OLDAP-2.3.template.txt │ │ ├── OLDAP-2.4.template.txt │ │ ├── OLDAP-2.5.template.txt │ │ ├── OLDAP-2.6.template.txt │ │ ├── OLDAP-2.7.template.txt │ │ ├── OLDAP-2.8.template.txt │ │ ├── OLFL-1.3.template.txt │ │ ├── OML.template.txt │ │ ├── OPL-1.0.template.txt │ │ ├── OPL-UK-3.0.template.txt │ │ ├── OPUBL-1.0.template.txt │ │ ├── OSET-PL-2.1.template.txt │ │ ├── OSL-1.0.template.txt │ │ ├── OSL-1.1.template.txt │ │ ├── OSL-2.0.template.txt │ │ ├── OSL-2.1.template.txt │ │ ├── OSL-3.0.template.txt │ │ ├── OpenJDK-assembly-exception-1.0.template.txt │ │ ├── OpenPBS-2.3.template.txt │ │ ├── OpenSSL-standalone.template.txt │ │ ├── OpenSSL.template.txt │ │ ├── OpenVision.template.txt │ │ ├── PADL.template.txt │ │ ├── PCRE2-exception.template.txt │ │ ├── PDDL-1.0.template.txt │ │ ├── PHP-3.0.template.txt │ │ ├── PHP-3.01.template.txt │ │ ├── PPL.template.txt │ │ ├── PS-or-PDF-font-exception-20170817.template.txt │ │ ├── PSF-2.0.template.txt │ │ ├── Parity-6.0.0.template.txt │ │ ├── Parity-7.0.0.template.txt │ │ ├── Pixar.template.txt │ │ ├── Plexus.template.txt │ │ ├── PolyForm-Noncommercial-1.0.0.template.txt │ │ ├── PolyForm-Small-Business-1.0.0.template.txt │ │ ├── PostgreSQL.template.txt │ │ ├── Python-2.0.1.template.txt │ │ ├── Python-2.0.template.txt │ │ ├── QPL-1.0-INRIA-2004-exception.template.txt │ │ ├── QPL-1.0-INRIA-2004.template.txt │ │ ├── QPL-1.0.template.txt │ │ ├── Qhull.template.txt │ │ ├── Qt-GPL-exception-1.0.template.txt │ │ ├── Qt-LGPL-exception-1.1.template.txt │ │ ├── Qwt-exception-1.0.template.txt │ │ ├── RHeCos-1.1.template.txt │ │ ├── RPL-1.1.template.txt │ │ ├── RPL-1.5.template.txt │ │ ├── RPSL-1.0.template.txt │ │ ├── RRDtool-FLOSS-exception-2.0.template.txt │ │ ├── RSA-MD.template.txt │ │ ├── RSCPL.template.txt │ │ ├── Rdisc.template.txt │ │ ├── Ruby-pty.template.txt │ │ ├── Ruby.template.txt │ │ ├── SANE-exception.template.txt │ │ ├── SAX-PD-2.0.template.txt │ │ ├── SAX-PD.template.txt │ │ ├── SCEA.template.txt │ │ ├── SGI-B-1.0.template.txt │ │ ├── SGI-B-1.1.template.txt │ │ ├── SGI-B-2.0.template.txt │ │ ├── SGI-OpenGL.template.txt │ │ ├── SGP4.template.txt │ │ ├── SHL-0.5.template.txt │ │ ├── SHL-0.51.template.txt │ │ ├── SHL-2.0.template.txt │ │ ├── SHL-2.1.template.txt │ │ ├── SISSL-1.2.template.txt │ │ ├── SISSL.template.txt │ │ ├── SL.template.txt │ │ ├── SMAIL-GPL.template.txt │ │ ├── SMLNJ.template.txt │ │ ├── SMPPL.template.txt │ │ ├── SNIA.template.txt │ │ ├── SPL-1.0.template.txt │ │ ├── SSH-OpenSSH.template.txt │ │ ├── SSH-short.template.txt │ │ ├── SSLeay-standalone.template.txt │ │ ├── SSPL-1.0.template.txt │ │ ├── SWI-exception.template.txt │ │ ├── SWL.template.txt │ │ ├── Saxpath.template.txt │ │ ├── SchemeReport.template.txt │ │ ├── Sendmail-8.23.template.txt │ │ ├── Sendmail-Open-Source-1.1.template.txt │ │ ├── Sendmail.template.txt │ │ ├── SimPL-2.0.template.txt │ │ ├── Sleepycat.template.txt │ │ ├── Soundex.template.txt │ │ ├── Spencer-86.template.txt │ │ ├── Spencer-94.template.txt │ │ ├── Spencer-99.template.txt │ │ ├── SugarCRM-1.1.3.template.txt │ │ ├── Sun-PPP-2000.template.txt │ │ ├── Sun-PPP.template.txt │ │ ├── SunPro.template.txt │ │ ├── Swift-exception.template.txt │ │ ├── Symlinks.template.txt │ │ ├── TAPR-OHL-1.0.template.txt │ │ ├── TCL.template.txt │ │ ├── TCP-wrappers.template.txt │ │ ├── TGPPL-1.0.template.txt │ │ ├── TMate.template.txt │ │ ├── TORQUE-1.1.template.txt │ │ ├── TOSL.template.txt │ │ ├── TPDL.template.txt │ │ ├── TPL-1.0.template.txt │ │ ├── TTWL.template.txt │ │ ├── TTYP0.template.txt │ │ ├── TU-Berlin-1.0.template.txt │ │ ├── TU-Berlin-2.0.template.txt │ │ ├── TermReadKey.template.txt │ │ ├── Texinfo-exception.template.txt │ │ ├── ThirdEye.template.txt │ │ ├── TrustedQSL.template.txt │ │ ├── UBDL-exception.template.txt │ │ ├── UCAR.template.txt │ │ ├── UCL-1.0.template.txt │ │ ├── UMich-Merit.template.txt │ │ ├── UPL-1.0.template.txt │ │ ├── URT-RLE.template.txt │ │ ├── Ubuntu-font-1.0.template.txt │ │ ├── Unicode-3.0.template.txt │ │ ├── Unicode-DFS-2015.template.txt │ │ ├── Unicode-DFS-2016.template.txt │ │ ├── Unicode-TOU.template.txt │ │ ├── Universal-FOSS-exception-1.0.template.txt │ │ ├── UnixCrypt.template.txt │ │ ├── Unlicense.template.txt │ │ ├── VOSTROM.template.txt │ │ ├── VSL-1.0.template.txt │ │ ├── Vim.template.txt │ │ ├── W3C-19980720.template.txt │ │ ├── W3C-20150513.template.txt │ │ ├── W3C.template.txt │ │ ├── WTFPL.template.txt │ │ ├── Watcom-1.0.template.txt │ │ ├── Widget-Workshop.template.txt │ │ ├── Wsuipa.template.txt │ │ ├── WxWindows-exception-3.1.template.txt │ │ ├── X11-distribute-modifications-variant.template.txt │ │ ├── X11-swapped.template.txt │ │ ├── X11.template.txt │ │ ├── XFree86-1.1.template.txt │ │ ├── XSkat.template.txt │ │ ├── Xdebug-1.03.template.txt │ │ ├── Xerox.template.txt │ │ ├── Xfig.template.txt │ │ ├── Xnet.template.txt │ │ ├── YPL-1.0.template.txt │ │ ├── YPL-1.1.template.txt │ │ ├── ZPL-1.1.template.txt │ │ ├── ZPL-2.0.template.txt │ │ ├── ZPL-2.1.template.txt │ │ ├── Zed.template.txt │ │ ├── Zeeff.template.txt │ │ ├── Zend-2.0.template.txt │ │ ├── Zimbra-1.3.template.txt │ │ ├── Zimbra-1.4.template.txt │ │ ├── Zlib.template.txt │ │ ├── any-OSI-perl-modules.template.txt │ │ ├── any-OSI.template.txt │ │ ├── bcrypt-Solar-Designer.template.txt │ │ ├── blessing.template.txt │ │ ├── bzip2-1.0.6.template.txt │ │ ├── check-cvs.template.txt │ │ ├── checkmk.template.txt │ │ ├── copyleft-next-0.3.0.template.txt │ │ ├── copyleft-next-0.3.1.template.txt │ │ ├── cryptsetup-OpenSSL-exception.template.txt │ │ ├── curl.template.txt │ │ ├── cve-tou.template.txt │ │ ├── diffmark.template.txt │ │ ├── dtoa.template.txt │ │ ├── dvipdfm.template.txt │ │ ├── eCos-exception-2.0.template.txt │ │ ├── eGenix.template.txt │ │ ├── erlang-otp-linking-exception.template.txt │ │ ├── etalab-2.0.template.txt │ │ ├── fmt-exception.template.txt │ │ ├── freertos-exception-2.0.template.txt │ │ ├── fwlw.template.txt │ │ ├── gSOAP-1.3b.template.txt │ │ ├── generic-xts.template.txt │ │ ├── gnu-javamail-exception.template.txt │ │ ├── gnuplot.template.txt │ │ ├── gtkbook.template.txt │ │ ├── harbour-exception.template.txt │ │ ├── hdparm.template.txt │ │ ├── i2p-gpl-java-exception.template.txt │ │ ├── iMatix.template.txt │ │ ├── libpng-2.0.template.txt │ │ ├── libpri-OpenH323-exception.template.txt │ │ ├── libselinux-1.0.template.txt │ │ ├── libtiff.template.txt │ │ ├── libutil-David-Nugent.template.txt │ │ ├── lsof.template.txt │ │ ├── magaz.template.txt │ │ ├── mailprio.template.txt │ │ ├── metamail.template.txt │ │ ├── mif-exception.template.txt │ │ ├── mpi-permissive.template.txt │ │ ├── mpich2.template.txt │ │ ├── mplus.template.txt │ │ ├── mxml-exception.template.txt │ │ ├── openvpn-openssl-exception.template.txt │ │ ├── pkgconf.template.txt │ │ ├── pnmstitch.template.txt │ │ ├── psfrag.template.txt │ │ ├── psutils.template.txt │ │ ├── python-ldap.template.txt │ │ ├── radvd.template.txt │ │ ├── romic-exception.template.txt │ │ ├── snprintf.template.txt │ │ ├── softSurfer.template.txt │ │ ├── ssh-keyscan.template.txt │ │ ├── stunnel-exception.template.txt │ │ ├── swrule.template.txt │ │ ├── threeparttable.template.txt │ │ ├── u-boot-exception-2.0.template.txt │ │ ├── ulem.template.txt │ │ ├── vsftpd-openssl-exception.template.txt │ │ ├── w3m.template.txt │ │ ├── wwl.template.txt │ │ ├── x11vnc-openssl-exception.template.txt │ │ ├── xinetd.template.txt │ │ ├── xkeyboard-config-Zinoviev.template.txt │ │ ├── xlock.template.txt │ │ ├── xpp.template.txt │ │ ├── xzoom.template.txt │ │ └── zlib-acknowledgement.template.txt │ └── testdata │ │ ├── 0BSD.txt │ │ ├── 389-exception.txt │ │ ├── 3D-Slicer-1.0.txt │ │ ├── AAL.txt │ │ ├── ADSL.txt │ │ ├── AFL-1.1.txt │ │ ├── AFL-1.2.txt │ │ ├── AFL-2.0.txt │ │ ├── AFL-2.1.txt │ │ ├── AFL-3.0.txt │ │ ├── AGPL-1.0-only.txt │ │ ├── AGPL-1.0-or-later.txt │ │ ├── AGPL-3.0-only.txt │ │ ├── AGPL-3.0-or-later.txt │ │ ├── AMD-newlib.txt │ │ ├── AMDPLPA.txt │ │ ├── AML-glslang.txt │ │ ├── AML.txt │ │ ├── AMPAS.txt │ │ ├── ANTLR-PD-fallback.txt │ │ ├── ANTLR-PD.txt │ │ ├── APAFML.txt │ │ ├── APL-1.0.txt │ │ ├── APSL-1.0.txt │ │ ├── APSL-1.1.txt │ │ ├── APSL-1.2.txt │ │ ├── APSL-2.0.txt │ │ ├── ASWF-Digital-Assets-1.0.txt │ │ ├── ASWF-Digital-Assets-1.1.txt │ │ ├── Abstyles.txt │ │ ├── AdaCore-doc.txt │ │ ├── Adobe-2006.txt │ │ ├── Adobe-Display-PostScript.txt │ │ ├── Adobe-Glyph.txt │ │ ├── Adobe-Utopia.txt │ │ ├── Afmparse.txt │ │ ├── Aladdin.txt │ │ ├── Apache-1.0.txt │ │ ├── Apache-1.1.txt │ │ ├── Apache-2.0.txt │ │ ├── App-s2p.txt │ │ ├── Arphic-1999.txt │ │ ├── Artistic-1.0-Perl.txt │ │ ├── Artistic-1.0-cl8.txt │ │ ├── Artistic-1.0.txt │ │ ├── Artistic-2.0.txt │ │ ├── Asterisk-exception.txt │ │ ├── Asterisk-linking-protocols-exception.txt │ │ ├── Autoconf-exception-2.0.txt │ │ ├── Autoconf-exception-3.0.txt │ │ ├── Autoconf-exception-generic-3.0.txt │ │ ├── Autoconf-exception-generic.txt │ │ ├── Autoconf-exception-macro.txt │ │ ├── BSD-1-Clause.txt │ │ ├── BSD-2-Clause-Darwin.txt │ │ ├── BSD-2-Clause-Patent.txt │ │ ├── BSD-2-Clause-Views.txt │ │ ├── BSD-2-Clause-first-lines.txt │ │ ├── BSD-2-Clause.txt │ │ ├── BSD-3-Clause-Attribution.txt │ │ ├── BSD-3-Clause-Clear.txt │ │ ├── BSD-3-Clause-HP.txt │ │ ├── BSD-3-Clause-LBNL.txt │ │ ├── BSD-3-Clause-Modification.txt │ │ ├── BSD-3-Clause-No-Military-License.txt │ │ ├── BSD-3-Clause-No-Nuclear-License-2014.txt │ │ ├── BSD-3-Clause-No-Nuclear-License.txt │ │ ├── BSD-3-Clause-No-Nuclear-Warranty.txt │ │ ├── BSD-3-Clause-Open-MPI.txt │ │ ├── BSD-3-Clause-Sun.txt │ │ ├── BSD-3-Clause-acpica.txt │ │ ├── BSD-3-Clause-flex.txt │ │ ├── BSD-3-Clause.txt │ │ ├── BSD-4-Clause-Shortened.txt │ │ ├── BSD-4-Clause-UC.txt │ │ ├── BSD-4-Clause.txt │ │ ├── BSD-4.3RENO.txt │ │ ├── BSD-4.3TAHOE.txt │ │ ├── BSD-Advertising-Acknowledgement.txt │ │ ├── BSD-Attribution-HPND-disclaimer.txt │ │ ├── BSD-Inferno-Nettverk.txt │ │ ├── BSD-Protection.txt │ │ ├── BSD-Source-Code.txt │ │ ├── BSD-Source-beginning-file.txt │ │ ├── BSD-Systemics-W3Works.txt │ │ ├── BSD-Systemics.txt │ │ ├── BSL-1.0.txt │ │ ├── BUSL-1.1.txt │ │ ├── Baekmuk.txt │ │ ├── Bahyph.txt │ │ ├── Barr.txt │ │ ├── Beerware.txt │ │ ├── Bison-exception-1.24.txt │ │ ├── Bison-exception-2.2.txt │ │ ├── BitTorrent-1.0.txt │ │ ├── BitTorrent-1.1.txt │ │ ├── Bitstream-Charter.txt │ │ ├── Bitstream-Vera.txt │ │ ├── BlueOak-1.0.0.txt │ │ ├── Boehm-GC-without-fee.txt │ │ ├── Boehm-GC.txt │ │ ├── Bootloader-exception.txt │ │ ├── Borceux.txt │ │ ├── Brian-Gladman-2-Clause.txt │ │ ├── Brian-Gladman-3-Clause.txt │ │ ├── C-UDA-1.0.txt │ │ ├── CAL-1.0-Combined-Work-Exception.txt │ │ ├── CAL-1.0.txt │ │ ├── CATOSL-1.1.txt │ │ ├── CC-BY-1.0.txt │ │ ├── CC-BY-2.0.txt │ │ ├── CC-BY-2.5-AU.txt │ │ ├── CC-BY-2.5.txt │ │ ├── CC-BY-3.0-AT.txt │ │ ├── CC-BY-3.0-AU.txt │ │ ├── CC-BY-3.0-DE.txt │ │ ├── CC-BY-3.0-IGO.txt │ │ ├── CC-BY-3.0-NL.txt │ │ ├── CC-BY-3.0-US.txt │ │ ├── CC-BY-3.0.txt │ │ ├── CC-BY-4.0.txt │ │ ├── CC-BY-NC-1.0.txt │ │ ├── CC-BY-NC-2.0.txt │ │ ├── CC-BY-NC-2.5.txt │ │ ├── CC-BY-NC-3.0-DE.txt │ │ ├── CC-BY-NC-3.0.txt │ │ ├── CC-BY-NC-4.0.txt │ │ ├── CC-BY-NC-ND-1.0.txt │ │ ├── CC-BY-NC-ND-2.0.txt │ │ ├── CC-BY-NC-ND-2.5.txt │ │ ├── CC-BY-NC-ND-3.0-DE.txt │ │ ├── CC-BY-NC-ND-3.0-IGO.txt │ │ ├── CC-BY-NC-ND-3.0.txt │ │ ├── CC-BY-NC-ND-4.0.txt │ │ ├── CC-BY-NC-SA-1.0.txt │ │ ├── CC-BY-NC-SA-2.0-DE.txt │ │ ├── CC-BY-NC-SA-2.0-FR.txt │ │ ├── CC-BY-NC-SA-2.0-UK.txt │ │ ├── CC-BY-NC-SA-2.0.txt │ │ ├── CC-BY-NC-SA-2.5.txt │ │ ├── CC-BY-NC-SA-3.0-DE.txt │ │ ├── CC-BY-NC-SA-3.0-IGO.txt │ │ ├── CC-BY-NC-SA-3.0.txt │ │ ├── CC-BY-NC-SA-4.0.txt │ │ ├── CC-BY-ND-1.0.txt │ │ ├── CC-BY-ND-2.0.txt │ │ ├── CC-BY-ND-2.5.txt │ │ ├── CC-BY-ND-3.0-DE.txt │ │ ├── CC-BY-ND-3.0.txt │ │ ├── CC-BY-ND-4.0.txt │ │ ├── CC-BY-SA-1.0.txt │ │ ├── CC-BY-SA-2.0-UK.txt │ │ ├── CC-BY-SA-2.0.txt │ │ ├── CC-BY-SA-2.1-JP.txt │ │ ├── CC-BY-SA-2.5.txt │ │ ├── CC-BY-SA-3.0-AT.txt │ │ ├── CC-BY-SA-3.0-DE.txt │ │ ├── CC-BY-SA-3.0-IGO.txt │ │ ├── CC-BY-SA-3.0.txt │ │ ├── CC-BY-SA-4.0.txt │ │ ├── CC-PDDC.txt │ │ ├── CC-PDM-1.0.txt │ │ ├── CC-SA-1.0.txt │ │ ├── CC0-1.0.txt │ │ ├── CDDL-1.0.txt │ │ ├── CDDL-1.1.txt │ │ ├── CDL-1.0.txt │ │ ├── CDLA-Permissive-1.0.txt │ │ ├── CDLA-Permissive-2.0.txt │ │ ├── CDLA-Sharing-1.0.txt │ │ ├── CECILL-1.0.txt │ │ ├── CECILL-1.1.txt │ │ ├── CECILL-2.0.txt │ │ ├── CECILL-2.1.txt │ │ ├── CECILL-B.txt │ │ ├── CECILL-C.txt │ │ ├── CERN-OHL-1.1.txt │ │ ├── CERN-OHL-1.2.txt │ │ ├── CERN-OHL-P-2.0.txt │ │ ├── CERN-OHL-S-2.0.txt │ │ ├── CERN-OHL-W-2.0.txt │ │ ├── CFITSIO.txt │ │ ├── CGAL-linking-exception.txt │ │ ├── CLISP-exception-2.0.txt │ │ ├── CMU-Mach-nodoc.txt │ │ ├── CMU-Mach.txt │ │ ├── CNRI-Jython.txt │ │ ├── CNRI-Python-GPL-Compatible.txt │ │ ├── CNRI-Python.txt │ │ ├── COIL-1.0.txt │ │ ├── CPAL-1.0.txt │ │ ├── CPL-1.0.txt │ │ ├── CPOL-1.02.txt │ │ ├── CUA-OPL-1.0.txt │ │ ├── Caldera-no-preamble.txt │ │ ├── Caldera.txt │ │ ├── Catharon.txt │ │ ├── ClArtistic.txt │ │ ├── Classpath-exception-2.0.txt │ │ ├── Clips.txt │ │ ├── Community-Spec-1.0.txt │ │ ├── Condor-1.1.txt │ │ ├── Cornell-Lossless-JPEG.txt │ │ ├── Cronyx.txt │ │ ├── Crossword.txt │ │ ├── CrystalStacker.txt │ │ ├── Cube.txt │ │ ├── D-FSL-1.0.txt │ │ ├── DEC-3-Clause.txt │ │ ├── DL-DE-BY-2.0.txt │ │ ├── DL-DE-ZERO-2.0.txt │ │ ├── DOC.txt │ │ ├── DRL-1.0.txt │ │ ├── DRL-1.1.txt │ │ ├── DSDP.txt │ │ ├── DigiRule-FOSS-exception.txt │ │ ├── DocBook-Schema.txt │ │ ├── DocBook-Stylesheet.txt │ │ ├── DocBook-XML.txt │ │ ├── Dotseqn.txt │ │ ├── ECL-1.0.txt │ │ ├── ECL-2.0.txt │ │ ├── EFL-1.0.txt │ │ ├── EFL-2.0.txt │ │ ├── EPICS.txt │ │ ├── EPL-1.0.txt │ │ ├── EPL-2.0.txt │ │ ├── EUDatagrid.txt │ │ ├── EUPL-1.0.txt │ │ ├── EUPL-1.1.txt │ │ ├── EUPL-1.2.txt │ │ ├── Elastic-2.0.txt │ │ ├── Entessa.txt │ │ ├── ErlPL-1.1.txt │ │ ├── Eurosym.txt │ │ ├── FBM.txt │ │ ├── FDK-AAC.txt │ │ ├── FLTK-exception.txt │ │ ├── FSFAP-no-warranty-disclaimer.txt │ │ ├── FSFAP.txt │ │ ├── FSFUL.txt │ │ ├── FSFULLR.txt │ │ ├── FSFULLRWD.txt │ │ ├── FTL.txt │ │ ├── Fair.txt │ │ ├── Fawkes-Runtime-exception.txt │ │ ├── Ferguson-Twofish.txt │ │ ├── Font-exception-2.0.txt │ │ ├── Frameworx-1.0.txt │ │ ├── FreeBSD-DOC.txt │ │ ├── FreeImage.txt │ │ ├── Furuseth.txt │ │ ├── GCC-exception-2.0-note.txt │ │ ├── GCC-exception-2.0.txt │ │ ├── GCC-exception-3.1.txt │ │ ├── GCR-docs.txt │ │ ├── GD.txt │ │ ├── GFDL-1.1-invariants-only.txt │ │ ├── GFDL-1.1-invariants-or-later.txt │ │ ├── GFDL-1.1-no-invariants-only.txt │ │ ├── GFDL-1.1-no-invariants-or-later.txt │ │ ├── GFDL-1.1-only.txt │ │ ├── GFDL-1.1-or-later.txt │ │ ├── GFDL-1.2-invariants-only.txt │ │ ├── GFDL-1.2-invariants-or-later.txt │ │ ├── GFDL-1.2-no-invariants-only.txt │ │ ├── GFDL-1.2-no-invariants-or-later.txt │ │ ├── GFDL-1.2-only.txt │ │ ├── GFDL-1.2-or-later.txt │ │ ├── GFDL-1.3-invariants-only.txt │ │ ├── GFDL-1.3-invariants-or-later.txt │ │ ├── GFDL-1.3-no-invariants-only.txt │ │ ├── GFDL-1.3-no-invariants-or-later.txt │ │ ├── GFDL-1.3-only.txt │ │ ├── GFDL-1.3-or-later.txt │ │ ├── GL2PS.txt │ │ ├── GLWTPL.txt │ │ ├── GNAT-exception.txt │ │ ├── GNOME-examples-exception.txt │ │ ├── GNU-compiler-exception.txt │ │ ├── GPL-1.0-only.txt │ │ ├── GPL-1.0-or-later.txt │ │ ├── GPL-2.0-only.txt │ │ ├── GPL-2.0-or-later.txt │ │ ├── GPL-3.0-389-ds-base-exception.txt │ │ ├── GPL-3.0-interface-exception.txt │ │ ├── GPL-3.0-linking-exception.txt │ │ ├── GPL-3.0-linking-source-exception.txt │ │ ├── GPL-3.0-only.txt │ │ ├── GPL-3.0-or-later.txt │ │ ├── GPL-CC-1.0.txt │ │ ├── GStreamer-exception-2005.txt │ │ ├── GStreamer-exception-2008.txt │ │ ├── Giftware.txt │ │ ├── Glide.txt │ │ ├── Glulxe.txt │ │ ├── Gmsh-exception.txt │ │ ├── Graphics-Gems.txt │ │ ├── Gutmann.txt │ │ ├── HIDAPI.txt │ │ ├── HP-1986.txt │ │ ├── HP-1989.txt │ │ ├── HPND-DEC.txt │ │ ├── HPND-Fenneberg-Livingston.txt │ │ ├── HPND-INRIA-IMAG.txt │ │ ├── HPND-Intel.txt │ │ ├── HPND-Kevlin-Henney.txt │ │ ├── HPND-MIT-disclaimer.txt │ │ ├── HPND-Markus-Kuhn.txt │ │ ├── HPND-Netrek.txt │ │ ├── HPND-Pbmplus.txt │ │ ├── HPND-UC-export-US.txt │ │ ├── HPND-UC.txt │ │ ├── HPND-doc-sell.txt │ │ ├── HPND-doc.txt │ │ ├── HPND-export-US-acknowledgement.txt │ │ ├── HPND-export-US-modify.txt │ │ ├── HPND-export-US.txt │ │ ├── HPND-export2-US.txt │ │ ├── HPND-merchantability-variant.txt │ │ ├── HPND-sell-MIT-disclaimer-xserver.txt │ │ ├── HPND-sell-regexpr.txt │ │ ├── HPND-sell-variant-MIT-disclaimer-rev.txt │ │ ├── HPND-sell-variant-MIT-disclaimer.txt │ │ ├── HPND-sell-variant.txt │ │ ├── HPND.txt │ │ ├── HTMLTIDY.txt │ │ ├── HaskellReport.txt │ │ ├── Hippocratic-2.1.txt │ │ ├── IBM-pibs.txt │ │ ├── ICU.txt │ │ ├── IEC-Code-Components-EULA.txt │ │ ├── IJG-short.txt │ │ ├── IJG.txt │ │ ├── IPA.txt │ │ ├── IPL-1.0.txt │ │ ├── ISC-Veillard.txt │ │ ├── ISC.txt │ │ ├── ImageMagick.txt │ │ ├── Imlib2.txt │ │ ├── Independent-modules-exception.txt │ │ ├── Info-ZIP.txt │ │ ├── Inner-Net-2.0.txt │ │ ├── InnoSetup.txt │ │ ├── Intel-ACPI.txt │ │ ├── Intel.txt │ │ ├── Interbase-1.0.txt │ │ ├── JPL-image.txt │ │ ├── JPNIC.txt │ │ ├── JSON.txt │ │ ├── Jam.txt │ │ ├── JasPer-2.0.txt │ │ ├── Kastrup.txt │ │ ├── Kazlib.txt │ │ ├── KiCad-libraries-exception.txt │ │ ├── Knuth-CTAN.txt │ │ ├── LAL-1.2.txt │ │ ├── LAL-1.3.txt │ │ ├── LGPL-2.0-only.txt │ │ ├── LGPL-2.0-or-later.txt │ │ ├── LGPL-2.1-only.txt │ │ ├── LGPL-2.1-or-later.txt │ │ ├── LGPL-3.0-linking-exception.txt │ │ ├── LGPL-3.0-only.txt │ │ ├── LGPL-3.0-or-later.txt │ │ ├── LGPLLR.txt │ │ ├── LLGPL.txt │ │ ├── LLVM-exception.txt │ │ ├── LOOP.txt │ │ ├── LPD-document.txt │ │ ├── LPL-1.0.txt │ │ ├── LPL-1.02.txt │ │ ├── LPPL-1.0.txt │ │ ├── LPPL-1.1.txt │ │ ├── LPPL-1.2.txt │ │ ├── LPPL-1.3a.txt │ │ ├── LPPL-1.3c.txt │ │ ├── LZMA-SDK-9.11-to-9.20.txt │ │ ├── LZMA-SDK-9.22.txt │ │ ├── LZMA-exception.txt │ │ ├── Latex2e-translated-notice.txt │ │ ├── Latex2e.txt │ │ ├── Leptonica.txt │ │ ├── LiLiQ-P-1.1.txt │ │ ├── LiLiQ-R-1.1.txt │ │ ├── LiLiQ-Rplus-1.1.txt │ │ ├── Libpng.txt │ │ ├── Libtool-exception.txt │ │ ├── Linux-OpenIB.txt │ │ ├── Linux-man-pages-1-para.txt │ │ ├── Linux-man-pages-copyleft-2-para.txt │ │ ├── Linux-man-pages-copyleft-var.txt │ │ ├── Linux-man-pages-copyleft.txt │ │ ├── Linux-syscall-note.txt │ │ ├── Lucida-Bitmap-Fonts.txt │ │ ├── MIPS.txt │ │ ├── MIT-0.txt │ │ ├── MIT-CMU.txt │ │ ├── MIT-Click.txt │ │ ├── MIT-Festival.txt │ │ ├── MIT-Khronos-old.txt │ │ ├── MIT-Modern-Variant.txt │ │ ├── MIT-Wu.txt │ │ ├── MIT-advertising.txt │ │ ├── MIT-enna.txt │ │ ├── MIT-feh.txt │ │ ├── MIT-open-group.txt │ │ ├── MIT-testregex.txt │ │ ├── MIT.txt │ │ ├── MITNFA.txt │ │ ├── MMIXware.txt │ │ ├── MPEG-SSG.txt │ │ ├── MPL-1.0.txt │ │ ├── MPL-1.1.txt │ │ ├── MPL-2.0-no-copyleft-exception.txt │ │ ├── MPL-2.0.txt │ │ ├── MS-LPL.txt │ │ ├── MS-PL.txt │ │ ├── MS-RL.txt │ │ ├── MTLL.txt │ │ ├── Mackerras-3-Clause-acknowledgment.txt │ │ ├── Mackerras-3-Clause.txt │ │ ├── MakeIndex.txt │ │ ├── Martin-Birgmeier.txt │ │ ├── McPhee-slideshow.txt │ │ ├── Minpack.txt │ │ ├── MirOS.txt │ │ ├── Motosoto.txt │ │ ├── MulanPSL-1.0.txt │ │ ├── MulanPSL-2.0.txt │ │ ├── Multics.txt │ │ ├── Mup.txt │ │ ├── NAIST-2003.txt │ │ ├── NASA-1.3.txt │ │ ├── NBPL-1.0.txt │ │ ├── NCBI-PD.txt │ │ ├── NCGL-UK-2.0.txt │ │ ├── NCL.txt │ │ ├── NCSA.txt │ │ ├── NGPL.txt │ │ ├── NICTA-1.0.txt │ │ ├── NIST-PD-fallback.txt │ │ ├── NIST-PD.txt │ │ ├── NIST-Software.txt │ │ ├── NLOD-1.0.txt │ │ ├── NLOD-2.0.txt │ │ ├── NLPL.txt │ │ ├── NOSL.txt │ │ ├── NPL-1.0.txt │ │ ├── NPL-1.1.txt │ │ ├── NPOSL-3.0.txt │ │ ├── NRL.txt │ │ ├── NTP-0.txt │ │ ├── NTP.txt │ │ ├── Naumen.txt │ │ ├── NetCDF.txt │ │ ├── Newsletr.txt │ │ ├── Nokia.txt │ │ ├── Noweb.txt │ │ ├── O-UDA-1.0.txt │ │ ├── OAR.txt │ │ ├── OCCT-PL.txt │ │ ├── OCCT-exception-1.0.txt │ │ ├── OCLC-2.0.txt │ │ ├── OCaml-LGPL-linking-exception.txt │ │ ├── ODC-By-1.0.txt │ │ ├── ODbL-1.0.txt │ │ ├── OFFIS.txt │ │ ├── OFL-1.0-RFN.txt │ │ ├── OFL-1.0-no-RFN.txt │ │ ├── OFL-1.0.txt │ │ ├── OFL-1.1-RFN.txt │ │ ├── OFL-1.1-no-RFN.txt │ │ ├── OFL-1.1.txt │ │ ├── OGC-1.0.txt │ │ ├── OGDL-Taiwan-1.0.txt │ │ ├── OGL-Canada-2.0.txt │ │ ├── OGL-UK-1.0.txt │ │ ├── OGL-UK-2.0.txt │ │ ├── OGL-UK-3.0.txt │ │ ├── OGTSL.txt │ │ ├── OLDAP-1.1.txt │ │ ├── OLDAP-1.2.txt │ │ ├── OLDAP-1.3.txt │ │ ├── OLDAP-1.4.txt │ │ ├── OLDAP-2.0.1.txt │ │ ├── OLDAP-2.0.txt │ │ ├── OLDAP-2.1.txt │ │ ├── OLDAP-2.2.1.txt │ │ ├── OLDAP-2.2.2.txt │ │ ├── OLDAP-2.2.txt │ │ ├── OLDAP-2.3.txt │ │ ├── OLDAP-2.4.txt │ │ ├── OLDAP-2.5.txt │ │ ├── OLDAP-2.6.txt │ │ ├── OLDAP-2.7.txt │ │ ├── OLDAP-2.8.txt │ │ ├── OLFL-1.3.txt │ │ ├── OML.txt │ │ ├── OPL-1.0.txt │ │ ├── OPL-UK-3.0.txt │ │ ├── OPUBL-1.0.txt │ │ ├── OSET-PL-2.1.txt │ │ ├── OSL-1.0.txt │ │ ├── OSL-1.1.txt │ │ ├── OSL-2.0.txt │ │ ├── OSL-2.1.txt │ │ ├── OSL-3.0.txt │ │ ├── OpenJDK-assembly-exception-1.0.txt │ │ ├── OpenPBS-2.3.txt │ │ ├── OpenSSL-standalone.txt │ │ ├── OpenSSL.txt │ │ ├── OpenVision.txt │ │ ├── PADL.txt │ │ ├── PCRE2-exception.txt │ │ ├── PDDL-1.0.txt │ │ ├── PHP-3.0.txt │ │ ├── PHP-3.01.txt │ │ ├── PPL.txt │ │ ├── PS-or-PDF-font-exception-20170817.txt │ │ ├── PSF-2.0.txt │ │ ├── Parity-6.0.0.txt │ │ ├── Parity-7.0.0.txt │ │ ├── Pixar.txt │ │ ├── Plexus.txt │ │ ├── PolyForm-Noncommercial-1.0.0.txt │ │ ├── PolyForm-Small-Business-1.0.0.txt │ │ ├── PostgreSQL.txt │ │ ├── Python-2.0.1.txt │ │ ├── Python-2.0.txt │ │ ├── QPL-1.0-INRIA-2004-exception.txt │ │ ├── QPL-1.0-INRIA-2004.txt │ │ ├── QPL-1.0.txt │ │ ├── Qhull.txt │ │ ├── Qt-GPL-exception-1.0.txt │ │ ├── Qt-LGPL-exception-1.1.txt │ │ ├── Qwt-exception-1.0.txt │ │ ├── RHeCos-1.1.txt │ │ ├── RPL-1.1.txt │ │ ├── RPL-1.5.txt │ │ ├── RPSL-1.0.txt │ │ ├── RRDtool-FLOSS-exception-2.0.txt │ │ ├── RSA-MD.txt │ │ ├── RSCPL.txt │ │ ├── Rdisc.txt │ │ ├── Ruby-pty.txt │ │ ├── Ruby.txt │ │ ├── SANE-exception.txt │ │ ├── SAX-PD-2.0.txt │ │ ├── SAX-PD.txt │ │ ├── SCEA.txt │ │ ├── SGI-B-1.0.txt │ │ ├── SGI-B-1.1.txt │ │ ├── SGI-B-2.0.txt │ │ ├── SGI-OpenGL.txt │ │ ├── SGP4.txt │ │ ├── SHL-0.5.txt │ │ ├── SHL-0.51.txt │ │ ├── SHL-2.0.txt │ │ ├── SHL-2.1.txt │ │ ├── SISSL-1.2.txt │ │ ├── SISSL.txt │ │ ├── SL.txt │ │ ├── SMAIL-GPL.txt │ │ ├── SMLNJ.txt │ │ ├── SMPPL.txt │ │ ├── SNIA.txt │ │ ├── SPL-1.0.txt │ │ ├── SSH-OpenSSH.txt │ │ ├── SSH-short.txt │ │ ├── SSLeay-standalone.txt │ │ ├── SSPL-1.0.txt │ │ ├── SWI-exception.txt │ │ ├── SWL.txt │ │ ├── Saxpath.txt │ │ ├── SchemeReport.txt │ │ ├── Sendmail-8.23.txt │ │ ├── Sendmail-Open-Source-1.1.txt │ │ ├── Sendmail.txt │ │ ├── SimPL-2.0.txt │ │ ├── Sleepycat.txt │ │ ├── Soundex.txt │ │ ├── Spencer-86.txt │ │ ├── Spencer-94.txt │ │ ├── Spencer-99.txt │ │ ├── SugarCRM-1.1.3.txt │ │ ├── Sun-PPP-2000.txt │ │ ├── Sun-PPP.txt │ │ ├── SunPro.txt │ │ ├── Swift-exception.txt │ │ ├── Symlinks.txt │ │ ├── TAPR-OHL-1.0.txt │ │ ├── TCL.txt │ │ ├── TCP-wrappers.txt │ │ ├── TGPPL-1.0.txt │ │ ├── TMate.txt │ │ ├── TORQUE-1.1.txt │ │ ├── TOSL.txt │ │ ├── TPDL.txt │ │ ├── TPL-1.0.txt │ │ ├── TTWL.txt │ │ ├── TTYP0.txt │ │ ├── TU-Berlin-1.0.txt │ │ ├── TU-Berlin-2.0.txt │ │ ├── TermReadKey.txt │ │ ├── Texinfo-exception.txt │ │ ├── ThirdEye.txt │ │ ├── TrustedQSL.txt │ │ ├── UBDL-exception.txt │ │ ├── UCAR.txt │ │ ├── UCL-1.0.txt │ │ ├── UMich-Merit.txt │ │ ├── UPL-1.0.txt │ │ ├── URT-RLE.txt │ │ ├── Ubuntu-font-1.0.txt │ │ ├── Unicode-3.0.txt │ │ ├── Unicode-DFS-2015.txt │ │ ├── Unicode-DFS-2016.txt │ │ ├── Unicode-TOU.txt │ │ ├── Universal-FOSS-exception-1.0.txt │ │ ├── UnixCrypt.txt │ │ ├── Unlicense.txt │ │ ├── VOSTROM.txt │ │ ├── VSL-1.0.txt │ │ ├── Vim.txt │ │ ├── W3C-19980720.txt │ │ ├── W3C-20150513.txt │ │ ├── W3C.txt │ │ ├── WTFPL.txt │ │ ├── Watcom-1.0.txt │ │ ├── Widget-Workshop.txt │ │ ├── Wsuipa.txt │ │ ├── WxWindows-exception-3.1.txt │ │ ├── X11-distribute-modifications-variant.txt │ │ ├── X11-swapped.txt │ │ ├── X11.txt │ │ ├── XFree86-1.1.txt │ │ ├── XSkat.txt │ │ ├── Xdebug-1.03.txt │ │ ├── Xerox.txt │ │ ├── Xfig.txt │ │ ├── Xnet.txt │ │ ├── YPL-1.0.txt │ │ ├── YPL-1.1.txt │ │ ├── ZPL-1.1.txt │ │ ├── ZPL-2.0.txt │ │ ├── ZPL-2.1.txt │ │ ├── Zed.txt │ │ ├── Zeeff.txt │ │ ├── Zend-2.0.txt │ │ ├── Zimbra-1.3.txt │ │ ├── Zimbra-1.4.txt │ │ ├── Zlib.txt │ │ ├── any-OSI-perl-modules.txt │ │ ├── any-OSI.txt │ │ ├── bcrypt-Solar-Designer.txt │ │ ├── blessing.txt │ │ ├── bzip2-1.0.6.txt │ │ ├── check-cvs.txt │ │ ├── checkmk.txt │ │ ├── copyleft-next-0.3.0.txt │ │ ├── copyleft-next-0.3.1.txt │ │ ├── cryptsetup-OpenSSL-exception.txt │ │ ├── curl.txt │ │ ├── cve-tou.txt │ │ ├── diffmark.txt │ │ ├── dtoa.txt │ │ ├── dvipdfm.txt │ │ ├── eCos-exception-2.0.txt │ │ ├── eGenix.txt │ │ ├── erlang-otp-linking-exception.txt │ │ ├── etalab-2.0.txt │ │ ├── fmt-exception.txt │ │ ├── freertos-exception-2.0.txt │ │ ├── fwlw.txt │ │ ├── gSOAP-1.3b.txt │ │ ├── generic-xts.txt │ │ ├── gnu-javamail-exception.txt │ │ ├── gnuplot.txt │ │ ├── gtkbook.txt │ │ ├── harbour-exception.txt │ │ ├── hdparm.txt │ │ ├── i2p-gpl-java-exception.txt │ │ ├── iMatix.txt │ │ ├── libpng-2.0.txt │ │ ├── libpri-OpenH323-exception.txt │ │ ├── libselinux-1.0.txt │ │ ├── libtiff.txt │ │ ├── libutil-David-Nugent.txt │ │ ├── lsof.txt │ │ ├── magaz.txt │ │ ├── mailprio.txt │ │ ├── metamail.txt │ │ ├── mif-exception.txt │ │ ├── mpi-permissive.txt │ │ ├── mpich2.txt │ │ ├── mplus.txt │ │ ├── mxml-exception.txt │ │ ├── openvpn-openssl-exception.txt │ │ ├── pkgconf.txt │ │ ├── pnmstitch.txt │ │ ├── psfrag.txt │ │ ├── psutils.txt │ │ ├── python-ldap.txt │ │ ├── radvd.txt │ │ ├── romic-exception.txt │ │ ├── snprintf.txt │ │ ├── softSurfer.txt │ │ ├── ssh-keyscan.txt │ │ ├── stunnel-exception.txt │ │ ├── swrule.txt │ │ ├── threeparttable.txt │ │ ├── u-boot-exception-2.0.txt │ │ ├── ulem.txt │ │ ├── vsftpd-openssl-exception.txt │ │ ├── w3m.txt │ │ ├── wwl.txt │ │ ├── x11vnc-openssl-exception.txt │ │ ├── xinetd.txt │ │ ├── xkeyboard-config-Zinoviev.txt │ │ ├── xlock.txt │ │ ├── xpp.txt │ │ ├── xzoom.txt │ │ └── zlib-acknowledgement.txt │ └── testdata │ ├── json │ ├── exceptions.json │ └── licenses.json │ └── template │ ├── 0BSD.template.txt │ ├── 389-exception.template.txt │ └── AAL.template.txt └── testdata ├── addAll └── input │ ├── json │ ├── exceptions.json │ └── licenses.json │ ├── no_json_licenses │ └── json │ │ └── no_license_json_file_here │ ├── template │ └── 0BSD.template.txt │ └── text │ └── 0BSD.txt ├── config └── config.json ├── duplicates ├── config.json └── resources │ └── custom │ └── default │ └── license_patterns │ └── DuplicateMatchTest │ ├── license_template.txt │ └── license_template_duplicate.txt ├── importer ├── json │ ├── exceptions.json │ └── licenses.json ├── license_patterns │ └── TESTIMP │ │ ├── associated_text.txt │ │ ├── license_info.json │ │ ├── license_text.txt │ │ └── optional_text.txt ├── template │ ├── 0BSD.template.txt │ ├── 389-exception.template.txt │ └── AAL.template.txt └── text │ ├── 0BSD.txt │ ├── 389-exception.txt │ └── AAL.txt ├── prechecks ├── no_prechecks │ ├── config.json │ └── resources │ │ └── custom │ │ └── default │ │ └── license_patterns │ │ └── NoPreCheckTest │ │ └── license_template.txt └── static_prechecks │ ├── config.json │ └── resources │ └── custom │ └── default │ └── license_patterns │ └── Template │ ├── license_template.txt │ └── prechecks_license_template.json ├── resources ├── config.json ├── custom │ ├── customTest2 │ │ └── license_patterns │ │ │ └── Test2 │ │ │ ├── license_info.json │ │ │ └── license_test.txt │ └── default │ │ └── license_patterns │ │ ├── 0BSD │ │ ├── associated_BSD-header.txt │ │ ├── license_info.json │ │ └── license_text.txt │ │ └── Test1 │ │ ├── license_info.json │ │ └── license_test1.txt ├── input │ ├── AAL.txt │ ├── hey3b48dc4c-1730-415b-b5f5-870ba8e0b8fc │ └── hey46b2bdb8-9913-44af-ab0e-68dbfd8848d1 └── spdx │ └── 0.1234 │ ├── json │ ├── exceptions.json │ └── licenses.json │ └── template │ ├── 0BSD.template.txt │ └── AAL.template.txt ├── test-resources └── custom │ └── default │ ├── acceptable_patterns │ └── Apache_project.regex │ └── license_patterns │ └── Apache-2.0 │ ├── license_Apache-2.0_header.txt │ └── license_info.json └── validator ├── 0BSD.template.txt ├── 0BSD.txt ├── Afmparse.template.txt ├── Afmparse.txt ├── Beerware-email2.template.txt ├── Beerware-email2.txt ├── Beerware-email3.template.txt ├── Beerware-email3.txt ├── Beerware.template.txt ├── Beerware.txt ├── BlueOak-1.0.0.template.txt ├── BlueOak-1.0.0.txt ├── CC-BY-3.0.template.txt ├── CC-BY-3.0.txt ├── CC-BY-NC-SA-2.0-DE.template.txt ├── CC-BY-NC-SA-2.0-DE.txt ├── CC-BY-NC-SA-2.0-FR-fixed.template.txt ├── CC-BY-NC-SA-2.0-FR-orig.template.txt ├── CC-BY-NC-SA-2.0-FR.template.txt ├── CC-BY-NC-SA-2.0-FR.txt ├── CC-BY-SA-3.0.template.txt ├── CC-BY-SA-3.0.txt ├── COIL-1.0.template.txt ├── COIL-1.0.txt ├── Community-Spec-1.0.template.txt ├── Community-Spec-1.0.txt ├── D-FSL-1.0.template.txt ├── D-FSL-1.0.txt ├── EPL-1.0.template.txt ├── EPL-1.0.txt ├── ErlPL-1.1.template.txt ├── ErlPL-1.1.txt ├── IBM-pibs.template.txt ├── IBM-pibs.txt ├── LAL-1.3.template.txt ├── LAL-1.3.txt ├── LPL-1.0.template.txt ├── LPL-1.0.txt ├── NCSA.template.txt ├── NCSA.txt ├── OGL-UK-1.0.template.txt ├── OGL-UK-1.0.txt ├── PSF-2.0.template.txt ├── PSF-2.0.txt ├── PolyForm-Small-Business-1.0.0.template.txt ├── PolyForm-Small-Business-1.0.0.txt ├── Python-2.0.1.template.txt ├── Python-2.0.1.txt ├── Xdebug-1.03.template.txt ├── Xdebug-1.03.txt ├── copyleft-next-0.3.0.template.txt └── copyleft-next-0.3.0.txt /.github/dco.yml: -------------------------------------------------------------------------------- 1 | # This enables DCO bot for you, please take a look https://github.com/probot/dco 2 | # for more details. 3 | require: 4 | members: false 5 | -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- 1 | name: Go 2 | 3 | on: 4 | push: 5 | branches: [ "main" ] 6 | pull_request: 7 | branches: [ "main" ] 8 | 9 | jobs: 10 | 11 | build: 12 | runs-on: ubuntu-latest 13 | steps: 14 | - uses: actions/checkout@v3 15 | 16 | - name: Set up Go 17 | uses: actions/setup-go@v3 18 | with: 19 | go-version: 1.21 20 | 21 | - name: Build 22 | run: go build -v ./... 23 | 24 | - name: Test 25 | run: go test -tags=unit -v ./... 26 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cSpell.words": [ 3 | "configurer", 4 | "Debugf", 5 | "Infof", 6 | "Submatch", 7 | "submatches", 8 | "Tracef" 9 | ], 10 | "go.buildTags": "unit" 11 | } -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | All notable changes to this project will be documented in this file. 4 | 5 | ## [Unreleased] 6 | 7 | ## [0.0.1] - 2019-02-15 8 | 9 | ### Added 10 | - Added a changelog 11 | 12 | [unreleased]: https://github.com/ibm/repo-template/compare/v0.0.1...HEAD 13 | [0.0.1]: https://github.com/ibm/repo-template/releases/tag/v0.0.1 14 | -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- 1 | # IBM Donation to OWASP Foundation 2 | 3 | The license-scanner was originally designed, created and solely developed by Priti Desai (pdesai@us.ibm.com) and Mark Sturdevant (mark.sturdevant@ibm.com) while working for IBM Corporation (http://www.ibm.com/) under an Apache 2 license and donated in January 2023 to the OWASP Foundation's CycloneDX project. 4 | 5 | The license-scanner was created based on the prior works used internally at IBM. Acknowledging developers at IBM who established such foundation for license-scanner. -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | # MAINTAINERS 2 | 3 | Christopher Ferris - chrisfer@us.ibm.com 4 | -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- 1 | OWASP CycloneDX/license-scanner 2 | © Copyright 2023-present OWASP Foundation 3 | 4 | This product includes software developed at 5 | The OWASP Foundation's CycloneDX project (https://owasp.org/www-project-cyclonedx/). 6 | 7 | The Initial Developers of the license-scanner 8 | were Priti Desai (pdesai@us.ibm.com) and Mark Sturdevant (mark.sturdevant@ibm.com), working for IBM Corporation (http://www.ibm.com/) 9 | © Copyright IBM Corporation 2022, 2023. -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/Apache-2.0/associated_jackson-header.txt: -------------------------------------------------------------------------------- 1 | This copy of Jackson JSON processor <> is licensed under the 2 | Apache (Software) License, version 2.0 ("the License"). 3 | See the License for details about distribution rights, and the 4 | specific rights regarding derivate works. 5 | 6 | You may obtain a copy of the License at: 7 | 8 | -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/Apache-2.0/license_alt_title.txt: -------------------------------------------------------------------------------- 1 | The Apache Software License, Version 2.0 2 | -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/Apache-2.0/license_info.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Apache License 2.0", 3 | "family": "Apache", 4 | "spdx_standard": true, 5 | "osi_approved": true, 6 | "urls": "http://www.apache.org/licenses/LICENSE-2.0", 7 | "aliases": ["Apache License, Version 2.0", "Apache License v. 2.0", "Apache License Version 2.0", "Apache Software License v2.0"], 8 | "alias_prechecks": "apache" 9 | } 10 | -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/Apache-2.0/prechecks_associated_jackson-header.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this copy of jackson json processor", 4 | "is licensed under the apache (software) license,version 2.0 ('the license'). see the license for details about distribution rights,and the specific rights regarding derivate works. you may obtain a copy of the license at:" 5 | ] 6 | } -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/Apache-2.0/prechecks_license_Apache-2.0_header.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "apache license,version 2.0 (the 'license'); you may not use this file except in compliance with the license. you may obtain a copy of the license at http://www.apache.org/licenses/license-2.0 unless required by applicable law or agreed to in writing,software distributed under the license is distributed on an 'as is' basis,without warranties or conditions of any kind,either express or implied. see the license for the specific language governing permissions and limitations under the license." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/Apache-2.0/prechecks_license_alt_title.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "the apache software license,version 2.0" 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/BSD-2-Clause/associated_BSD-header.txt: -------------------------------------------------------------------------------- 1 | <><><> <> 2 | -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/BSD-2-Clause/license_info.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "BSD 2-clause \"Simplified\" License", 3 | "family": "BSD", 4 | "spdx_standard": true, 5 | "osi_approved": true, 6 | "aliases":[ 7 | "2-clause BSDL" 8 | ], 9 | "alias_prechecks": "BSD_weak", 10 | "urls":["https://opensource.org/licenses/bsd-license.php", "https://spdx.org/licenses/BSD-2-Clause.html"] 11 | } 12 | -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/BSD-2-Clause/prechecks_associated_BSD-header.json: -------------------------------------------------------------------------------- 1 | { 2 | "LicensePreChecks": [], 3 | "StaticBlocks": [] 4 | } -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/BSD-3-Clause/associated_BSD-header.txt: -------------------------------------------------------------------------------- 1 | <><><> <> 2 | -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/BSD-3-Clause/associated_Liability_Short.txt: -------------------------------------------------------------------------------- 1 | /* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR */ 2 | /* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED */ 3 | /* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR */ 4 | /* PURPOSE. */ 5 | -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/BSD-3-Clause/license_info.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "BSD 3-clause \"Revised\" License", 3 | "family": "BSD", 4 | "spdx_standard": true, 5 | "osi_approved": true, 6 | "aliases":[ 7 | "BSD 3-clause \"New\" License", 8 | "New BSD License", 9 | "Modified BSD License" 10 | ], 11 | "alias_prechecks": "BSD_weak", 12 | "urls":["https://spdx.org/licenses/BSD-3-Clause.html", "http://www.opensource.org/licenses/BSD-3-Clause", "http://www.antlr.org/license.html"] 13 | } 14 | -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/BSD-3-Clause/prechecks_associated_BSD-header.json: -------------------------------------------------------------------------------- 1 | { 2 | "LicensePreChecks": [], 3 | "StaticBlocks": [] 4 | } -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/BSD-3-Clause/prechecks_associated_Liability_Short.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this software is provided 'as is' and without any express or implied warranties,including,without limitation,the implied warranties of merchantability and fitness for a particular purpose." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/ISC/license_info.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ISC License", 3 | "family": "ISC", 4 | "spdx_standard": true, 5 | "osi_approved": true, 6 | "ignore_id_match": true, 7 | "alias_prechecks": "ISC_weak", 8 | "eligible_licenses": "Other-Approved", 9 | "is_mutator": true 10 | } 11 | -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/MIT/associated_full-title.txt: -------------------------------------------------------------------------------- 1 | <>The<> MIT <> <>(MIT)<> 2 | -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/MIT/associated_short-title.txt: -------------------------------------------------------------------------------- 1 | <> 2 | -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/MIT/license_info.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MIT License", 3 | "family": "MIT", 4 | "spdx_standard": true, 5 | "osi_approved": true, 6 | "ignore_id_match": true, 7 | "ignore_name_match": false, 8 | "alias_prechecks": "MIT_weak", 9 | "urls":["http://www.opensource.org/licenses/mit-license.php", "https://opensource.org/licenses/MIT"] 10 | } 11 | -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/MIT/prechecks_associated_full-title.json: -------------------------------------------------------------------------------- 1 | { 2 | "LicensePreChecks": [ 3 | "MIT_weak" 4 | ], 5 | "StaticBlocks": [ 6 | "mit" 7 | ] 8 | } -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/MIT/prechecks_associated_liability_clause.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "the", 4 | "provided", 5 | "without warranty of any kind,express or implied,including but not limited to the warranties of merchantability,fitness for a particular purpose", 6 | "in no event shall", 7 | "be liable for any claim,damages or other liability,whether in an action of contract,tort or otherwise,", 8 | "out of or in connection with the", 9 | "or the use or other dealings in the" 10 | ] 11 | } -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/MIT/prechecks_associated_short-title.json: -------------------------------------------------------------------------------- 1 | { 2 | "LicensePreChecks": [ 3 | "MIT_weak" 4 | ], 5 | "StaticBlocks": [] 6 | } -------------------------------------------------------------------------------- /resources/custom/default/license_patterns/MIT/prechecks_license_MIT.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission is hereby granted,free of charge,to any person obtaining a copy of", 4 | "to deal in the", 5 | "without restriction,including without", 6 | "the", 7 | "rights to use,copy,modify,merge,publish,distribute,", 8 | "sell copies of the", 9 | "and", 10 | "to permit persons to whom the", 11 | "furnished to do so,subject to the following" 12 | ] 13 | } -------------------------------------------------------------------------------- /resources/custom/testdata/license_patterns/TESTIMP/associated_text.txt: -------------------------------------------------------------------------------- 1 | associated -------------------------------------------------------------------------------- /resources/custom/testdata/license_patterns/TESTIMP/license_info.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test IMP", 3 | "family": "Import", 4 | "spdx_standard": true, 5 | "osi_approved": true 6 | } -------------------------------------------------------------------------------- /resources/custom/testdata/license_patterns/TESTIMP/license_text.txt: -------------------------------------------------------------------------------- 1 | This is a license pattern text file. -------------------------------------------------------------------------------- /resources/custom/testdata/license_patterns/TESTIMP/optional_text.txt: -------------------------------------------------------------------------------- 1 | optional -------------------------------------------------------------------------------- /resources/spdx/default/precheck/ADSL.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this software code is made available 'as is' without warranties of any kind. you may copy,display,modify and redistribute the software code either by itself or as incorporated into your code; provided that you do not remove any proprietary notice. your use of this software code is at your own risk and you waive any claim against amazon digital services,inc. or its affiliates with respect to your use of this software code. copyright 2006 amazon digital services,inc. or its affiliates." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/AMD-newlib.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this software is the property of", 4 | "which specifically grants the user the right to modify,use and distribute this software provided this notice is not removed or altered. all other rights are reserved by", 5 | "makes no warranty of any kind,express or implied,with regard to this software. in no event shall", 6 | "be liable for incidental or consequential damages in connection with or arising from the furnishing,performance,or use of this software." 7 | ] 8 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/APAFML.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this file and the 14 postscript(r) afm files it accompanies may be used,copied,and distributed for any purpose and without charge,with or without modification,provided that all copyright notice are retained; that the afm files are not distributed without this file; that all modifications to this file or any of the afm files are prominently noted in the modified file(s); and that this paragraph is not modified. adobe systems has no responsibility or obligation to support the use of the afm files." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Abstyles.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this program is distributed without any warranty,express or implied. copyright copyright 1991,1992 hans-hermann bode permission is granted to make and distribute verbatim copies of this document provided that the copyright notice and this permission notice are preserved on all copies. permission is granted to copy and distribute modified versions of this document under the conditions for verbatim copying,provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/AdaCore-doc.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this document may be copied,in whole or in part,in any form or by any means,as is or with alterations,provided that", 4 | "alterations are clearly marked as alterations and", 5 | "this copyright notice is included unmodified in any copy." 6 | ] 7 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Adobe-Utopia.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,reproduce,display and distribute the listed typefaces is hereby granted,provided that the adobe copyright notice appears in all whole and partial copies of the software and that the following trademark symbol and attribution appear in all unmodified copies of the software:the adobe typefaces (type 1 font program,bitmaps and adobe font metric files) donated are:utopia regular utopia italic utopia bold utopia bold italic" 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/App-s2p.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "copyright and license this program is free and open software. you may use,modify,distribute,and sell this program (and any modified variants) in any way you wish,provided you do not restrict others from doing the same." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Asterisk-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "in addition,when this program is distributed with asterisk in any form that would qualify as a 'combined work' or as a 'derivative work' (but not mere aggregation),you can redistribute and/or modify the combination under the terms of the license provided with that copy of asterisk,instead of the license terms granted here." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Autoconf-exception-generic-3.0.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "as a special exception to the gnu general public license,if you distribute this file as part of a program that contains a configuration script generated by autoconf,you may include it under the same distribution terms that you use for the rest of that program. this exception is an additional permission under section 7 of the gnu general public license,version 3 ('gplv3')." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Autoconf-exception-generic.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "as a special exception to the gnu general public license,", 4 | "as part of a program that contains a configuration script generated by autoconf,", 5 | "the rest of that program." 6 | ] 7 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/BSD-4.3RENO.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "redistribution and use in source and binary forms are permitted provided that this notice is preserved and that due credit is given to the", 4 | ". the name of the university may not be used to endorse or promote products derived from this software without specific", 5 | "permission. this software is provided 'as is' without express or implied warranty." 6 | ] 7 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Baekmuk.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "copyright copyright 1986-2002 kim jeong-hwan all rights reserved. permission to use,copy,modify and distribute this font is hereby granted,provided that both the copyright notice and this permission notice appear in all copies of the font,derivative works or modified versions,and that the following acknowledgement appear in supporting documentation:baekmuk batang,baekmuk dotum,baekmuk gulim,and baekmuk headline are registered trademarks owned by kim jeong-hwan." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Beerware.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "'the beer-ware license' (revision 42):", 4 | "wrote this file. as long as you retain this notice you can do whatever you want with this stuff. if we meet some day,and you think this stuff is worth it,you can buy me a beer in return poul-henning kamp" 5 | ] 6 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Bison-exception-1.24.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "as a special exception,when this file is copied by bison into a bison output file,you may use that output file without restriction. this special exception was added by the free software foundation in version 1.24 of bison." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Bitstream-Charter.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "copyright 1989-1992,bitstream inc.,cambridge,ma. you are hereby granted permission under all bitstream propriety rights to use,copy,modify,sublicense,sell,and redistribute the 4 bitstream charter", 4 | "type 1 outline fonts", 5 | "for any purpose and without restriction; provided,that this notice is left intact on all copies of such fonts and that bitstream's trademark is acknowledged as shown below on all unmodified copies of the 4 charter type 1 fonts. bitstream charter is a registered trademark of bitstream inc." 6 | ] 7 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Boehm-GC-without-fee.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this material is provided 'as is',with absolutely no warranty expressed or implied. any use is at your own risk. permission to use or copy this software for any purpose is hereby granted without fee,provided the above notice are retained on all copies. permission to modify the code and to distribute modified code is granted,provided the above notice are retained,and a notice that the code was modified is included with the above copyright notice." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Boehm-GC.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this material is provided as is,with absolutely no warranty expressed or implied. any use is at your own risk. permission is hereby granted to use or copy this program for any purpose,provided the above notice are retained on all copies. permission to modify the code and to distribute modified code is granted,provided the above notice are retained,and a notice that the code was modified is included with the above copyright notice." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Bootloader-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "in addition to the permissions in the gnu general public license,the authors give you unlimited permission to link or embed compiled bootloader and related files into combinations with other programs,and to distribute those combinations without any restriction coming from the use of those files. (the general public license restrictions do apply in other respects; for example,they cover modification of the files,and distribution when not linked into a", 4 | "executable.)" 5 | ] 6 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/CGAL-linking-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "as a special exception,you have permission to link this", 4 | "with the cgal library", 5 | "and distribute executables,as long as you follow the requirements of the gnu gpl in regard to all of the software in the executable aside from cgal." 6 | ] 7 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/CMU-Mach-nodoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify and distribute this software and its documentation is hereby granted,provided that both the copyright notice and this permission notice appear in all copies of the software,derivative works or modified versions,and any portions thereof. nrl allows free use of this software in its 'as is' condition and disclaims any liability of any kind for any damages whatsoever resulting from the use of this software." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/CMU-Mach.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify and distribute this software and its documentation is hereby granted,provided that both the copyright notice and this permission notice appear in all copies of the software,derivative works or modified versions,and any portions thereof,and that both notice appear in supporting documentation. carnegie mellon allows free use of this software in its 'as is' condition. carnegie mellon disclaims any liability of any kind for any damages whatsoever resulting from the use of this software." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Cronyx.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this software may be used,modified,copied,distributed", 4 | "and sold,in both source and binary form provided that the", 5 | "copyright and these terms are retained. under no circumstances is the author responsible for the proper functioning of this software,nor does the author assume any responsibility for damages incurred with its use." 6 | ] 7 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Crossword.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "is distributed in the hope that it will be useful,but without any warranty. no author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any particular purpose or works at all,unless he says so in writing. everyone is granted permission to copy,modify and redistribute", 4 | ",provided this copyright notice is preserved and any modifications are indicated." 5 | ] 6 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/DocBook-Stylesheet.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify and distribute this stylesheet and its accompanying documentation for any purpose and without fee is hereby granted in perpetuity,provided that the above copyright notice and this paragraph appear in all copies. the copyright holders make no representation about the suitability of the schema for any purpose. it is provided 'as is' without expressed or implied warranty." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Dotseqn.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this file may be freely transmitted and reproduced,but it may not be changed unless the name is changed also (except that you may freely change the paper-size option for \\documentclass). this notice must be left intact." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/FBM.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission is granted to use this file in whole or in part for any purpose,educational,recreational or commercial,provided that this copyright notice is retained unchanged. this software is available to all free of charge by anonymous ftp and in the uunet archives." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/FSFAP-no-warranty-disclaimer.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "copying and distribution of this file,with or without modification,are permitted in any medium without royalty provided the copyright notice and this notice are preserved." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/FSFAP.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "copying and distribution of this file,with or without modification,are permitted in any medium without royalty provided the copyright notice and this notice are preserved. this file is offered as-is,without" 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/FSFUL.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this", 4 | "script is free software; the free software foundation gives unlimited permission to copy,distribute and modify it." 5 | ] 6 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/FSFULLR.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this file is free software; the free software foundation gives unlimited permission to copy and/or distribute it,with or without modifications,as long as this notice is preserved." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/FSFULLRWD.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this", 4 | "is free software;", 5 | "gives unlimited permission to copy and/or distribute it,with or without modifications,as long as this notice is preserved. this", 6 | "is distributed in the hope that it will be useful,but without any warranty,to the extent permitted by law; without even the implied warranty of merchantability or fitness for a particular purpose." 7 | ] 8 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Fair.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "usage of the works is permitted provided that this instrument is retained with the works,so that any entity that uses the works is notified of this instrument. disclaimer:the works are without warranty." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Furuseth.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "redistribution and use in source and binary forms,with or without modification,are permitted provided that this notice is preserved. the name of the copyright holders may not be used to endorse or promote products derived from this software without their specific prior written permission. this software is provided 'as is' without express or implied warranty." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/GCC-exception-2.0.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "in addition to the permissions in the gnu", 4 | "general public license,the", 5 | "you unlimited permission to link the compiled version of this", 6 | "with other programs,and to distribute those", 7 | "without any restriction coming from the use of this file. (the", 8 | "public license restrictions do apply in other respects; for example,they cover modification of the file,and distribution when not linked into", 9 | ".)" 10 | ] 11 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/GNAT-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "as a special exception,if other files instantiate generics from this unit,or you link this unit with other files to produce an executable,this unit does not by itself cause the resulting executable to be covered by the gnu general public license. this exception does not however invalidate any other reasons why the executable file might be covered by the gnu public license." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/GNOME-examples-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "as a special exception,the copyright holders give you permission to copy,modify,and distribute the example code contained in this document under the terms of your choosing,without restriction." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/GNU-compiler-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "as a special exception,if you link", 4 | "with files compiled with a gnu compiler to produce an executable,", 5 | "does not cause the resulting executable to be covered by the gnu", 6 | "general public license. this exception does not however invalidate any other reasons why the executable file might be covered by the gnu", 7 | "general public license." 8 | ] 9 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/GPL-3.0-389-ds-base-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "additional permission under gplv3 section 7:if you modify this program,or any covered work,by linking or combining it with openssl,or a modified version of openssl licensed under the openssl license (http://www.openssl.org/source/license.html),the licensors of this program grant you additional permission to convey the resulting work. corresponding source for a non-source form of such a combination shall include the source code for the parts that are licensed under the openssl license as well as that of the covered work." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/GPL-3.0-linking-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "if you modify this program,or any covered work,by linking or combining it with", 4 | "(or a modified version of that library),containing parts covered by the terms of", 5 | ",the licensors of this program grant you additional permission to convey the resulting work." 6 | ] 7 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/GPL-3.0-linking-source-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "if you modify this program,or any covered work,by linking or combining it with", 4 | "(or a modified version of that library),containing parts covered by the terms of", 5 | "you additional permission to convey the resulting work. corresponding source for a non-source form of such a combination shall include the source code for the parts of", 6 | "used as well as that of the covered work." 7 | ] 8 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/GStreamer-exception-2005.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "the", 4 | "project hereby grant permission for non-gpl compatible gstreamer plugins to be used and distributed together with gstreamer and", 5 | ". this permission", 6 | "above and beyond the permissions granted by the gpl license", 7 | "is covered by." 8 | ] 9 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/GStreamer-exception-2008.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "hereby grants permission for non-gpl compatible gstreamer plugins to be used and distributed together with gstreamer and", 4 | ". this permission is above and beyond the permissions granted by the gpl license by which", 5 | "is covered. if you modify this code,you may extend this exception to your version of the code,but you are not obligated to do so. if you do not wish to do so,delete this exception statement from your version." 6 | ] 7 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Glulxe.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "you may copy and distribute it freely,by any means and under any conditions,as long as the code and documentation is not changed. you may also incorporate this code into your own program and distribute that,or modify this code and use and distribute the modified version,as long as you retain a notice in your program or documentation which mentions my name and the url shown above." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Graphics-Gems.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "eula:the graphics gems code is copyright-protected. in other words,you cannot claim the text of the code as your own and resell it. using the code is permitted in any program,product,or library,noncommercial or commercial. giving credit is not required,though is a nice gesture. the code comes as-is,and if there are any flaws or problems with any gems code,nobody involved with gems - authors,editors,publishers,or webmasters - are to be held responsible. basically,don't be a jerk,and remember that anything free comes with no guarantee." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Gutmann.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "you can use this code in whatever way you want,as long as you don't try to claim you wrote it." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/HIDAPI.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this software may be used by anyone for any reason so long as the copyright notice in the source files remains intact." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/HP-1986.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "to anyone who acknowledges that this file is provided 'as is' without any express or implied warranty:permission to use,copy,modify,and distribute this file for any purpose is hereby granted without fee,provided that the above copyright notice and this notice appears in all copies,and that the name of hewlett-packard company not be used in advertising or publicity pertaining to distribution of the software without specific,written prior permission. hewlett-packard company makes no representations about the suitability of this software for any purpose." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/HPND-INRIA-IMAG.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this software is available with usual 'research' terms with the aim of retain credits of the software. permission to use,copy,modify and distribute this software for any purpose and without fee is hereby granted,provided that the above copyright notice and this permission notice appear in all copies,and the name of inria,imag,or any contributor not be used in advertising or publicity pertaining to this material without the prior explicit permission. the software is provided 'as is' without any warranties,support or liabilities of any kind." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/HPND-Kevlin-Henney.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify,and distribute this software and its documentation for any purpose is hereby granted without fee,provided that this copyright and permissions notice appear in all copies and derivatives. this software is supplied 'as is' without express or implied warranty. but that said,if there are any problems please get in touch." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/HPND-Markus-Kuhn.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify,and distribute this software for any purpose and without fee is hereby granted. the author disclaims all warranties with regard to this software." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/HPND-Netrek.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify,and distribute this software and its documentation for any purpose and without fee is hereby granted,provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. no representations are made about the suitability of this software for any purpose. it is provided 'as is' without express or implied warranty." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/HPND-Pbmplus.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify,and distribute this software and its documentation for any purpose and without fee is hereby granted,provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. this software is provided 'as is' without express or implied warranty." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/HPND-UC-export-US.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify,and distribute this software and its documentation for any purpose and without fee is hereby granted,provided that the above copyright notice appear in all copies. the university of california makes no representations about the suitability of this software for any purpose. it is provided 'as is' without express or implied warranty. export of this software outside of the united states of america may require an export license." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/HPND-UC.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify,and distribute this software and its documentation for any purpose and without fee is hereby granted,provided that the above copyright notice appear in all copies.", 4 | "no representations about the suitability of this software for any purpose. it is provided 'as is' without express or implied warranty." 5 | ] 6 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/HPND-doc-sell.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify,distribute,and sell this documentation for any purpose is hereby granted without fee,provided that the above copyright notice and this permission notice appear in all copies.", 4 | "makes no representations about the suitability for any purpose of the information in this document. this documentation is provided 'as is' without express or implied warranty." 5 | ] 6 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/HPND-doc.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify,and distribute this documentation for any purpose and without fee is hereby granted,provided that the above copyright notice and this permission notice appear in all copies.", 4 | "makes no representations about the suitability for any purpose of the information in this document. this documentation is provided 'as is' without express or implied warranty." 5 | ] 6 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/HPND-merchantability-variant.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify,and distribute this file for any purpose is hereby granted without fee,provided that the above copyright notice and this notice appears in all copies. this file is distributed without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/HPND-sell-regexpr.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify,distribute,and sell this software and its documentation for any purpose is hereby granted without fee,provided that the above copyright notice appear in all copies. this software is provided 'as is' without express or implied warranty." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/HPND-sell-variant.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify,distribute", 4 | "and sell this software and its documentation for any purpose is hereby granted without fee,provided that the above copyright notice", 5 | "in all copies", 6 | "that both", 7 | "copyright notice and this permission notice appear in supporting documentation" 8 | ] 9 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/HPND.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify", 4 | "and distribute this software", 5 | "for any purpose and without fee is hereby granted", 6 | "provided that the above copyright notice", 7 | "in all copies", 8 | "that both", 9 | "copyright notice and this permission notice appear in supporting documentation" 10 | ] 11 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/ISC-Veillard.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify,and distribute this software for any purpose with or without fee is hereby granted,provided that the above copyright notice and this permission notice appear in all copies. this software is provided 'as is' and without any express or implied warranties,including,without limitation,the implied warranties of merchantability and fitness for a particular purpose. the authors and contributors accept no responsibility in any conceivable manner." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Jam.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "license is hereby granted to use this software and distribute it freely,as long as this copyright notice is retained and modifications are clearly marked. all warranties are hereby disclaimed." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Kastrup.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "any use of the code is permitted as long as this copyright notice is preserved in the code." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/KiCad-libraries-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "to the extent that the creation of electronic designs that use 'licensed material' can be considered to be 'adapted material',then the copyright holder waives article 3 of the license with respect to these designs and any generated files which use data provided as part of the 'licensed material'." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Knuth-CTAN.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this software is copyrighted. unlimited copying and redistribution of this package and/or its individual files are permitted as long as there are no modifications. modifications,and redistribution of modifications,are also permitted,but only if the resulting package and/or files are renamed." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/LPD-document.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission is granted to copy and distribute this document for any purpose and without charge,including translations into other languages and incorporation into compilations,provided that the copyright notice and this notice are preserved,and that any substantive changes or deletions from the original are clearly marked." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/LZMA-SDK-9.11-to-9.20.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "lzma sdk is written and placed in the public domain by igor pavlov. some code in lzma is based on public domain code from another developers:", 4 | "ppmd var.h (2001):dmitry shkarin", 5 | "sha-256:wei dai (crypto++ library)" 6 | ] 7 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/LZMA-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "igor pavlov and amir szekely,the authors of the lzma compression module for nsis,expressly permit you to statically or dynamically link your code (or bind by name) to the files from the lzma compression module for nsis without subjecting your linked code to the terms of the common public license version 1.0. any modifications or additions to files from the lzma compression module for nsis,however,are subject to the terms of the common public license version 1.0." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Latex2e.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying,provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. permission is granted to copy and distribute translations of this manual into another language,under the above conditions for modified versions." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Libtool-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "as a special exception to the gnu", 4 | "general public license,if you distribute this file as part of a program or library that is built using gnu libtool,you may include this file under the same distribution terms that you use for the rest of that program." 5 | ] 6 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Linux-man-pages-1-para.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission is granted to distribute possibly modified copies of this page provided the header is included verbatim,and in case of nontrivial modification author and date of the modification is added to the header." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Linux-man-pages-copyleft-2-para.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying,provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/MIPS.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "mips computer systems,inc. grants reproduction and use rights to all parties,provided that this comment is maintained in the copy." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Martin-Birgmeier.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "you may redistribute unmodified or modified versions of this source code provided that the above copyright notice and this and the following conditions are retained. this software is provided 'as is',and comes with no warranties of any kind. i shall in no event be liable for anything that happens to anyone/anything when using this software." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/McPhee-slideshow.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "everyone is welcome to use this code for any purpose,to modify it,and to copy it in whole or in part for use in other macro sets,with the conditions that this copyright notice be preserved with any significant portion of the code,and that modifications to this file be clearly marked." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Multics.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify,and distribute these programs and their documentation for any purpose and without fee is hereby granted,provided that the below copyright notice and historical background appear in all copies and that both the copyright notice and historical background and this permission notice appear in supporting documentation,and that the name of mit,his,bull or bull hn not be used in advertising or publicity pertaining to distribution of the programs without specific prior written permission." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/NLPL.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "terms and conditions for copying,distribution,modification or anything else.", 4 | "no limit to do anything with this work and this license." 5 | ] 6 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/NTP-0.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify,and distribute this software and its documentation for any purpose is hereby granted,provided that the name", 4 | "of", 5 | "not be used in advertising or publicity pertaining to distribution of the software without specific,written prior permission.", 6 | "make", 7 | "no representations about the suitability of this software for any purpose. it is provided 'as is' without express or implied warranty." 8 | ] 9 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Newsletr.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission is granted to anyone to use this software for any purpose on any computer system,and to redistribute it freely,subject to the following restrictions:", 4 | "this software is distributed in the hope that it will be useful,but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.", 5 | "altered versions must be plainly marked as such,and must not be misrepresented as being the original software." 6 | ] 7 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/OAR.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify,and distribute this software for any purpose without fee is hereby granted,provided that this entire notice is included in all copies of any software which is or includes a copy or modification of this software. this software is being provided 'as is',without any express or implied warranty. in particular,the author makes no representation or warranty of any kind concerning the merchantability of this software or its fitness for any particular purpose." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/PADL.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "redistribution and use in source and binary forms,with or without modification,are permitted provided that this notice is preserved and that due credit is given to padl software pty ltd. this software is provided 'as is' without express or implied warranty." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/PCRE2-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "exemption for binary library-like packages the second condition in the bsd license (covering binary redistribution) does not apply all the way down a chain of software. if binary package a includes pcre2,it must respect the condition,but if package b is software that includes package a,the condition is not imposed on package b unless it uses pcre2 independently." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/PS-or-PDF-font-exception-20170817.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "as a special exception,permission is granted to include these font programs in a postscript or pdf file that consists of a document that contains text to be displayed or printed using this font,regardless of the conditions or license applying to the document itself." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/QPL-1.0-INRIA-2004-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "as a special exception to the q public license,you may develop application programs,reusable components and other software items that link with the original or modified versions of the", 4 | "and are not made available to the general public,without any of the additional requirements listed in clause 6c of the q public license." 5 | ] 6 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Ruby-pty.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this software may be redistributed freely for this purpose,in full or in part,provided that this entire copyright notice is included on any copies of this software and applications and derivations thereof. this software is provided on an 'as is' basis,without warranty of any kind,either expressed or implied,as to any matter including,but not limited to warranty of fitness of purpose,or merchantability,or results obtained from use of this software." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/SAX-PD-2.0.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "i hereby abandon any property rights to sax 2.0 (the simple api for xml),and release all of the sax 2.0 source code,compiled code,and documentation contained in this distribution into the public domain. sax comes with no warranty or guarantee of fitness for any purpose." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/SGP4.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "there is no license associated with the code and you may use it for any purpose-personal or commercial-as you wish. we ask only that you include citations in your documentation and source code to show the source of the code and provide links to the main page,to facilitate communications regarding any questions on the theory or source code." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/SL.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "everyone is permitted to do anything on this program including copying,modifying,and improving,unless you try to pretend that you wrote it. i.e.,the above copyright notice has to appear in all copies. the author disclaims any responsibility with regard to this software." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/SSH-short.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "as far as i am concerned,the code i have written for this software can be used freely for any purpose. any derived versions of this software must be clearly marked as such,and if the derived work is incompatible with the protocol description in the rfc file,it must be called by a name other than 'ssh' or 'secure shell'." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/SWI-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "as a special exception,if you link this library with other files,compiled with a free software compiler,to produce an executable,this library does not by itself cause the resulting executable to be covered by the gnu general public license. this exception does not however invalidate any other reasons why the executable file might be covered by the gnu general public license." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/SchemeReport.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "we intend this report to belong to the entire scheme community,and so we grant permission to copy it in whole or in part without fee. in particular,we encourage implementors of scheme to use this report as a starting point for manuals and other documentation,modifying it as necessary." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Soundex.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "freedom to use these sources for whatever you want,as long as credit is given where credit is due,is hereby granted. you may make modifications where you see fit but leave this copyright somewhere visible. as well,try to initial any changes you make so that if i like the changes i can incorporate them into later versions.", 4 | "mark mielke" 5 | ] 6 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Spencer-86.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission is granted to anyone to use this software for any purpose on any computer system,and to redistribute it freely,subject to the following restrictions:", 4 | "the author is not responsible for the consequences of use of this software,no matter how awful,even if they arise from defects in it.", 5 | "the origin of this software must not be misrepresented,either by explicit claim or by omission.", 6 | "altered versions must be plainly marked as such,and must not be misrepresented as being the original software." 7 | ] 8 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Sun-PPP-2000.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify,and distribute this software and its documentation is hereby granted,provided that the above copyright notice appears in all copies. sun makes no representation or warranties about the suitability of the software,either express or implied,including but not limited to the implied warranties of merchantability,fitness for a particular purpose,or non-infringement. sun shall not be liable for any damages suffered by licensee as a result of using,modifying or distributing this software or its derivatives" 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Sun-PPP.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "non-exclusive rights to redistribute,modify,translate,and use this software in source and binary forms,in whole or in part,is hereby granted,provided that the above copyright notice is duplicated in any source form,and that neither the name of the copyright holder nor the author is used to endorse or promote products derived from this software. this software is provided 'as is' and without any express or implied warranties,including,without limitation,the implied warranties of merchantibility and fitness for a particular purpose." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/SunPro.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "developed at", 4 | ",a sun microsystems,inc. business. permission to use,copy,modify,and distribute this software is freely granted,provided that this notice is preserved." 5 | ] 6 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Swift-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "as an exception,if you use this software to compile your source code and portions of this software are embedded into the binary product as a result,you may redistribute such product without providing attribution as would otherwise be required by sections 4(a),4(b) and 4(d) of the license." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Symlinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "my 'symlinks' utility pre-dates the 'open source licensing' fad by a number of years. just to clarify,this is 100% freeware,written entirely by myself. the intent is to use it to detect missing/obsolete symlink targets on an installed distro,before creating the 'gold' (or 'final') release discs. use and distribute and modify as you (or anyone else) sees fit. there have no formal restrictions or requirements whatsoever regarding distribution of either binaries or source code,whether modified or original." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/TCP-wrappers.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this material was originally written and compiled by wietse venema at eindhoven university of technology,the netherlands,in 1990,1991,1992,1993,1994 and", 4 | "redistribution and use in source and binary forms,with or without modification,are permitted provided that this entire copyright notice is duplicated in all such copies. this software is provided 'as is' and without any expressed or implied warranties,including,without limitation,the implied warranties of merchantibility and fitness for any particular purpose." 5 | ] 6 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/TPDL.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "license hereby granted for anyone to use,modify or redistribute this module at their own risk. please feed useful changes back to cpan@dave.sharnoff.org." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/TTWL.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this module may be modified,used,copied,and redistributed at your own risk. although allowed by the preceding license,please do not publicly redistribute modified versions of this code with the name 'text::tabs' unless it passes the unmodified text::tabs test suite." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/TU-Berlin-1.0.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "any use of this software is permitted provided that this notice is not removed and that neither the authors nor the technische universitaet berlin are deemed to have made any representations as to the suitability of this software for any purpose nor are held responsible for any defects of this software. there is absolutely no warranty for this software. as a matter of courtesy,the authors request to be informed about uses this software has found,about bugs in this software,and about any improvements that may be of general interest." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/TermReadKey.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "unlimited distribution and/or modification is allowed as long as this copyright notice remains intact." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Texinfo-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "as a special exception,when this file is read by tex when processing a texinfo source document,you may use the result without restriction. this exception is an additional permission under section 7 of the gnu general public license,version 3 ('gplv3')." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/ThirdEye.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "third eye software,inc. grants reproduction and use rights to all parties,provided that this comment is maintained in the copy. third eye makes no claims about the applicability of this symbol table to a particular use." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/UnixCrypt.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify and distribute this software for noncommercial or commercial purposes and without fee is hereby granted provided that this copyright notice appears in all copies." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/WTFPL.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "copyright copyright 2004 sam hocevar", 4 | "everyone is permitted to copy and distribute verbatim or modified copies of this license document,and changing it is allowed as long as the name is changed. do what the fuck you want to public license terms and conditions for copying,distribution and modification", 5 | "you just do what the fuck you want to." 6 | ] 7 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Wsuipa.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "unlimited copying and redistribution of each of the files is permitted as long as the file is not modified. modifications,and redistribution of modified versions,are also permitted,but only if the resulting file is renamed." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/XSkat.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this program is free software; you can redistribute it freely. use it at your own risk; there is no warranty. redistribution of modified versions is permitted provided that the following conditions are met:", 4 | "all copyright \u0026 permission notice are preserved.", 5 | "only changes required for packaging or porting are made. or", 6 | "it is clearly stated who last changed the program. the program is renamed or the version number is of the form x.y.z,where x.y is the version of the original program and z is an arbitrary suffix." 7 | ] 8 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Xfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "any party obtaining a copy of these files is granted,free of charge,a full and unrestricted irrevocable,world-wide,paid up,royalty-free,nonexclusive right and license to deal in this software and documentation files (the 'software'),including without limitation the rights to use,copy,modify,merge,publish and/or distribute copies of the software,and to permit persons who receive copies from any such party to do so,with the only requirement being that this copyright notice remain intact." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Zed.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "you may copy and distribute this file freely. any queries and complaints should be forwarded to jim.davies@comlab.ox.ac.uk. if you make any changes to this file,please do not distribute the results under the name 'zed-csp.sty'." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/Zeeff.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "you can use this code in any manner,as long as you leave my name on it and don't hold me responsible for any problems with it." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/any-OSI.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "pick your favorite osi approved license:) http://www.opensource.org/licenses/alphabetical" 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/bcrypt-Solar-Designer.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "no copyright is claimed,and the software is hereby placed in the public domain. in case this attempt to disclaim copyright and place the software in the public domain is deemed null and void,then the software is", 4 | "and it is hereby released to the general public under the following terms:redistribution and use in source and binary forms,with or without modification,are permitted. there's absolutely no warranty,express or implied." 5 | ] 6 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/blessing.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "the author disclaims copyright to this source code. in place of a legal notice,here is a blessing:may you do good and not evil. may you find forgiveness for yourself and forgive others. may you share freely,never taking more than you give." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/check-cvs.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission is granted to copy and/or distribute this file,with or without modifications,provided this notice is preserved." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/checkmk.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "redistribution of this program in any form,with or without modifications,is permitted,provided that the above copyright is retained in distributions of this program in source form. (this is a free,non-copyleft license compatible with pretty much any other free or proprietary license,including the gpl. it's essentially a scaled-down version of the 'modified' bsd license.)" 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/diffmark.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "you can do what you want with it", 4 | "i refuse any responsibility for the consequences" 5 | ] 6 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/dvipdfm.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "a modified version of this file may be distributed,but it should be distributed with a *different* name. changed files must be distributed *together with a complete and unchanged* distribution of these files." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/fmt-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "as an exception,if,as a result of your compiling your source code,portions of this software are embedded into a machine-executable object form of such source code,you may redistribute such embedded portions in such object form without including the above copyright and permission notice." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/fwlw.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this software package may be freely used,transmitted,reproduced,or modified provided that this notice is left intact." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/gnu-javamail-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "as a special exception,if you link this library with other files to produce an executable,this library does not by itself cause the resulting executable to be covered by the gnu general public license. this exception does not however invalidate any other reasons why the executable file might be covered by the gnu general public license." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/gtkbook.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this code is distributed without warranty. you are free to use this code for any purpose,however,if this code is republished or redistributed in its original form,as hardcopy or electronically,then you must include this copyright notice along with the code." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/hdparm.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "bsd-style open source license:you may freely use,modify,and redistribute the hdparm program,as either binary or source,or both. the only condition is that my name and copyright notice remain in the source code as-is." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/libpri-OpenH323-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "as a special exception,libpri may also be linked to the openh323 library,so long as the entirity of the derivative work (as defined within the gpl) is licensed either under the mpl of the openh323 license or the gpl of libpri." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/magaz.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this software may be freely used,transmitted,reproduced,or modified provided that the copyright notice and this permission is retained." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/mailprio.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "copyright 1994,1996,tony sanders", 4 | "rights are hereby granted to download,use,modify,sell,copy,and redistribute this software so long as the original copyright notice and this list of conditions remain intact and modified versions are noted as such. i would also very much appreciate it if you could send me a copy of any changes you make so i can possibly integrate them into my version." 5 | ] 6 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/metamail.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify,and distribute this material for any purpose and without fee is hereby granted,provided that the above copyright notice and this permission notice appear in all copies,and that the name of bellcore not be used in advertising or publicity pertaining to this material without the specific,prior written permission of an authorized representative of bellcore. bellcore makes no representations about the accuracy or suitability of this material for any purpose. it is provided 'as is',without any express or implied warranties." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/mif-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "as a special exception,you may use this file as part of a free software library without restriction. specifically,if other files instantiate templates or use macros or inline functions from this file,or you compile this file and link it with other files to produce an executable,this file does not by itself cause the resulting executable to be covered by the gnu general public license. this exception does not however invalidate any other reasons why the executable file might be covered by the gnu general public license." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/mpi-permissive.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission is hereby granted to use,reproduce,prepare derivative works,and to redistribute to others. disclaimer neither", 4 | ",nor any of their employees,makes any warranty express or implied,or assumes any legal liability or responsibility for the accuracy,completeness,or usefulness of any information,apparatus,product,or process disclosed,or represents that its use would not infringe privately owned rights. this code was written by" 5 | ] 6 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/mplus.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "these fonts are free softwares. unlimited permission is granted to use,copy,and distribute it,with or without modification,either commercially and noncommercially. these fonts are provided 'as is' without warranty." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/pkgconf.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "permission to use,copy,modify,and/or distribute this software for any purpose with or without fee is hereby granted,provided that the above copyright notice and this permission notice appear in all copies. this software is provided 'as is' and without any warranty,express or implied. in no event shall the authors be liable for any damages arising from the use of this software." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/psfrag.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this system is distributed in the hope that it will be useful,but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. don't come complaining to us if you modify this file and it doesn't work! if this file is modified by anyone but the authors,those changes and their authors must be explicitly stated here." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/python-ldap.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "the python-ldap package is distributed under python-style license. standard disclaimer:this software is made available by the author(s) to the public for free and 'as is'. all users of this free software are solely and entirely responsible for their own choice and use of this software for their own purposes. by using this software,each user agrees that the author(s) shall not be liable for damages of any kind in relation to its use or performance. the author(s) do not warrant that this software is fit for any purpose." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/romic-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "additional permission under the gnu affero gpl version 3 section 7:if you modify this program,or any covered work,by linking or combining it with other code,such other code is not for that reason alone subject to any of the requirements of the gnu affero gpl version" 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/snprintf.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this code is based on code written by patrick powell (papowell@astart.com) it may be used for any purpose as long as this notice remains intact on all source code distributions" 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/softSurfer.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "copyright 2001,softsurfer (www.softsurfer.com) this code may be freely used and modified for any purpose providing that this copyright notice is included with it. softsurfer makes no warranty for this code,and cannot be held liable for any real or imagined damage resulting from its use. users of this code must verify correctness for their application." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/ssh-keyscan.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "modification and redistribution in source and binary forms is permitted provided that due credit is given to the author and the openbsd project by leaving this copyright notice intact." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/swrule.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "the style package is copyrighted but may be used and extended in any way,as long as a pointer to the original author is maintained. the author is not liable for any problem that may or may not result from using this package. use at your own risk." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/threeparttable.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this file may be distributed,modified,and used in other works with just one restriction:modified versions must clearly indicate the modification (a name change,or a displayed message,or ?)." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/ulem.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "may be freely transmitted,reproduced,or modified for any purpose provided that this", 4 | "notice is left intact." 5 | ] 6 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/vsftpd-openssl-exception.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "as copyright holder,i give permission for vsftpd to be linked to the openssl libraries. this includes permission for vsftpd binaries to be distributed linked against the openssl libraries. all other obligations under the gpl v2 remain intact." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/w3m.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "use,modification and redistribution of this software is hereby granted,provided that this entire copyright notice is included on any copies of this software and applications and derivations thereof. this software is provided on an 'as is' basis,without warranty of any kind,either expressed or implied,as to any matter including,but not limited to warranty of fitness of purpose,or merchantability,or results obtained from use of this software." 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/wwl.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "db@freebsd.org wrote this file. as long as you retain this notice you can do whatever you want with this code,except you may not license it under any form of the gpl. a postcard or qsl card showing me you appreciate this code would be nice. diane bruce va3db" 4 | ] 5 | } -------------------------------------------------------------------------------- /resources/spdx/default/precheck/xzoom.json: -------------------------------------------------------------------------------- 1 | { 2 | "StaticBlocks": [ 3 | "this program is distributed with no warranty. source files for this program may be distributed freely. modifications to this file are okay as long as:", 4 | "this copyright notice and comment are preserved and left at the top of the file.", 5 | "the man page is fixed to reflect the change.", 6 | "the author of this change adds his name and change description to the list of changes below. executable files may be distributed with sources,or with exact location where the source code can be obtained." 7 | ] 8 | } -------------------------------------------------------------------------------- /resources/spdx/default/template/ADSL.template.txt: -------------------------------------------------------------------------------- 1 | This software code is made available "AS IS" without warranties of any kind. You may copy, display, modify and redistribute the software code either by itself or as incorporated into your code; provided that you do not remove any proprietary notices. Your use of this software code is at your own risk and you waive any claim against Amazon Digital Services, Inc. or its affiliates with respect to your use of this software code. (c) 2006 Amazon Digital Services, Inc. or its affiliates. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/AdaCore-doc.template.txt: -------------------------------------------------------------------------------- 1 | This document may be copied, in whole or in part, in any form or by any means, as is or with alterations, provided that (1) alterations are clearly marked as alterations and (2) this copyright notice is included unmodified in any copy. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Adobe-Utopia.template.txt: -------------------------------------------------------------------------------- 1 | Permission to use, reproduce, display and distribute the listed typefaces is hereby granted, provided that the Adobe Copyright notice appears in all whole and partial copies of the software and that the following trademark symbol and attribution appear in all unmodified copies of the software: 2 | 3 | The Adobe typefaces (Type 1 font program, bitmaps and Adobe Font Metric files) donated are: 4 | 5 | Utopia Regular 6 | Utopia Italic 7 | Utopia Bold 8 | Utopia Bold Italic 9 | 10 | -------------------------------------------------------------------------------- /resources/spdx/default/template/App-s2p.template.txt: -------------------------------------------------------------------------------- 1 | COPYRIGHT and LICENSE 2 | This program is free and open software. You may use, modify, distribute, and sell this program (and any modified variants) in any way you wish, provided you do not restrict others from doing the same. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Asterisk-exception.template.txt: -------------------------------------------------------------------------------- 1 | In addition, when this program is distributed with Asterisk in any form that would qualify as a 'combined work' or as a 'derivative work' (but not mere aggregation), you can redistribute and/or modify the combination under the terms of the license provided with that copy of Asterisk, instead of the license terms granted here. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Autoconf-exception-generic-3.0.template.txt: -------------------------------------------------------------------------------- 1 | As a special exception to the GNU General Public License, if you distribute this file as part of a program that contains a configuration script generated by Autoconf, you may include it under the same distribution terms that you use for the rest of that program. This Exception is an additional permission under section 7 of the GNU General Public License, version 3 ("GPLv3"). 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Baekmuk.template.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 1986-2002 Kim Jeong-Hwan All rights reserved. 2 | 3 | Permission to use, copy, modify and distribute this font is hereby granted, provided that both the copyright notice and this permission notice appear in all copies of the font, derivative works or modified versions, and that the following acknowledgement appear in supporting documentation: Baekmuk Batang, Baekmuk Dotum, Baekmuk Gulim, and Baekmuk Headline are registered trademarks owned by Kim Jeong-Hwan. 4 | 5 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Beerware.template.txt: -------------------------------------------------------------------------------- 1 | "THE BEER-WARE LICENSE" (Revision 42): 2 | 3 | wrote this file. As long as you retain this notice you can do whatever you want with this stuff. If we meet some day, and you think this stuff is worth it, you can buy me a beer in return Poul-Henning Kamp 4 | 5 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Bison-exception-1.24.template.txt: -------------------------------------------------------------------------------- 1 | As a special exception, when this file is copied by Bison into a Bison output file, you may use that output file without restriction. This special exception was added by the Free Software Foundation in version 1.24 of Bison. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/CGAL-linking-exception.template.txt: -------------------------------------------------------------------------------- 1 | As a special exception, you have permission to link this <> with the CGAL library<> (http://www.cgal.org)<> and distribute executables, as long as you follow the requirements of the GNU GPL in regard to all of the software in the executable aside from CGAL. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/CMU-Mach-nodoc.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this permission notice appear in all copies of the software, derivative works or modified versions, and any portions thereof. 3 | 4 | NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. 5 | 6 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Dotseqn.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | This file may be freely transmitted and reproduced, but it may not be changed unless the name is changed also (except that you may freely change the paper-size option for \documentclass). 3 | 4 | This notice must be left intact. 5 | 6 | -------------------------------------------------------------------------------- /resources/spdx/default/template/FBM.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | Permission is granted to use this file in whole or in part for any purpose, educational, recreational or commercial, provided that this copyright notice is retained unchanged. This software is available to all free of charge by anonymous FTP and in the UUNET archives. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/FSFAP-no-warranty-disclaimer.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/FSFAP.template.txt: -------------------------------------------------------------------------------- 1 | Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without <> . 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/FSFUL.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | This <> script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/FSFULLR.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | This file is free software; the Free Software Foundation gives unlimited permission to copy and/or distribute it, with or without modifications, as long as this notice is preserved. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Fair.template.txt: -------------------------------------------------------------------------------- 1 | <>Fair License 2 | 3 | <> < ";match=".{0,5000}">> 4 | Usage of the works is permitted provided that this instrument is retained with the works, so that any entity that uses the works is notified of this instrument. 5 | 6 | DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY. 7 | 8 | -------------------------------------------------------------------------------- /resources/spdx/default/template/GNAT-exception.template.txt: -------------------------------------------------------------------------------- 1 | As a special exception, if other files instantiate generics from this unit, or you link this unit with other files to produce an executable, this unit does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU Public License. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/GNOME-examples-exception.template.txt: -------------------------------------------------------------------------------- 1 | As a special exception, the copyright holders give you permission to copy, modify, and distribute the example code contained in this document under the terms of your choosing, without restriction. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/GPL-3.0-389-ds-base-exception.template.txt: -------------------------------------------------------------------------------- 1 | Additional permission under GPLv3 section 7: 2 | 3 | If you modify this Program, or any covered work, by linking or combining it with OpenSSL, or a modified version of OpenSSL licensed under the OpenSSL license (https://www.openssl.org/source/license.html), the licensors of this Program grant you additional permission to convey the resulting work. Corresponding Source for a non-source form of such a combination shall include the source code for the parts that are licensed under the OpenSSL license as well as that of the covered work. 4 | 5 | -------------------------------------------------------------------------------- /resources/spdx/default/template/GPL-3.0-linking-exception.template.txt: -------------------------------------------------------------------------------- 1 | <><>Additional permission under GNU GPL version 3 section 7 2 | 3 | <><> 4 | If you modify this Program, or any covered work, by linking or combining it with <> (or a modified version of that library), containing parts covered by the terms of <> , the licensors of this Program grant you additional permission to convey the resulting work. 5 | 6 | -------------------------------------------------------------------------------- /resources/spdx/default/template/GStreamer-exception-2005.template.txt: -------------------------------------------------------------------------------- 1 | The <> project hereby grant permission for non-gpl compatible GStreamer plugins to be used and distributed together with GStreamer and <> . This permission <> above and beyond the permissions granted by the GPL license <> is covered by. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Glulxe.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | You may copy and distribute it freely, by any means and under any conditions, as long as the code and documentation is not changed. You may also incorporate this code into your own program and distribute that, or modify this code and use and distribute the modified version, as long as you retain a notice in your program or documentation which mentions my name and the URL shown above. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Gutmann.template.txt: -------------------------------------------------------------------------------- 1 | You can use this code in whatever way you want, as long as you don't try to claim you wrote it. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/HIDAPI.template.txt: -------------------------------------------------------------------------------- 1 | This software may be used by anyone for any reason so long as the copyright notice in the source files remains intact. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/HPND-INRIA-IMAG.template.txt: -------------------------------------------------------------------------------- 1 | This software is available with usual "research" terms with the aim of retain credits of the software. Permission to use, copy, modify and distribute this software for any purpose and without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies, and the name of INRIA, IMAG, or any contributor not be used in advertising or publicity pertaining to this material without the prior explicit permission. The software is provided "as is" without any warranties, support or liabilities of any kind. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/HPND-Kevlin-Henney.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | Permission to use, copy, modify, and distribute this software and its documentation for any purpose is hereby granted without fee, provided that this copyright and permissions notice appear in all copies and derivatives. 3 | 4 | This software is supplied "as is" without express or implied warranty. 5 | 6 | But that said, if there are any problems please get in touch. 7 | 8 | -------------------------------------------------------------------------------- /resources/spdx/default/template/HPND-Markus-Kuhn.template.txt: -------------------------------------------------------------------------------- 1 | Permission to use, copy, modify, and distribute this software for any purpose and without fee is hereby granted. The author disclaims all warranties with regard to this software. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/HPND-Netrek.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. No representations are made about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/HPND-Pbmplus.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. This software is provided "as is" without express or implied warranty. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/HPND-UC.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies. <> <> no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/HPND-doc-sell.template.txt: -------------------------------------------------------------------------------- 1 | < ";match=".{0,5000}">> 2 | Permission to use, copy, modify, distribute, and sell this documentation for any purpose is hereby granted without fee, provided that the above copyright notice and this permission notice appear in all copies. <";match=".*">> makes no representations about the suitability for any purpose of the information in this document. This documentation is provided "as is" without express or implied warranty. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/HPND-doc.template.txt: -------------------------------------------------------------------------------- 1 | < ";match=".{0,5000}">> 2 | Permission to use, copy, modify, and distribute this documentation for any purpose and without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. <";match=".*">> makes no representations about the suitability for any purpose of the information in this document. This documentation is provided "as is" without express or implied warranty. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/HPND-merchantability-variant.template.txt: -------------------------------------------------------------------------------- 1 | <";match=".{0,5000}">> 2 | Permission to use, copy, modify, and distribute this file for any purpose is hereby granted without fee, provided that the above copyright notice and this notice appears in all copies. 3 | 4 | This file is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 5 | 6 | -------------------------------------------------------------------------------- /resources/spdx/default/template/HPND-sell-regexpr.template.txt: -------------------------------------------------------------------------------- 1 | < Copyright (c) 1991 Tatu Ylonen, Espoo, Finland";match=".{0,5000}">> 2 | Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies. This software is provided "as is" without express or implied warranty. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/ISC-Veillard.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Jam.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | License is hereby granted to use this software and distribute it freely, as long as this copyright notice is retained and modifications are clearly marked. 3 | 4 | ALL WARRANTIES ARE HEREBY DISCLAIMED. 5 | 6 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Kastrup.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | Any use of the code is permitted as long as this copyright notice is preserved in the code. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/KiCad-libraries-exception.template.txt: -------------------------------------------------------------------------------- 1 | To the extent that the creation of electronic designs that use 'Licensed Material' can be considered to be 'Adapted Material', then the copyright holder waives article 3 of the license with respect to these designs and any generated files which use data provided as part of the 'Licensed Material'. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Knuth-CTAN.template.txt: -------------------------------------------------------------------------------- 1 | This software is copyrighted. Unlimited copying and redistribution of this package and/or its individual files are permitted as long as there are no modifications. Modifications, and redistribution of modifications, are also permitted, but only if the resulting package and/or files are renamed. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/LPD-document.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | Permission is granted to copy and distribute this document for any purpose and without charge, including translations into other languages and incorporation into compilations, provided that the copyright notice and this notice are preserved, and that any substantive changes or deletions from the original are clearly marked.<> Distribution of this document is unlimited.<> 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/LZMA-SDK-9.11-to-9.20.template.txt: -------------------------------------------------------------------------------- 1 | <>LICENSE 2 | 3 | ------- 4 | 5 | <> 6 | LZMA SDK is written and placed in the public domain by Igor Pavlov. 7 | 8 | Some code in LZMA is based on public domain code from another developers: 1) PPMd var.H (2001): Dmitry Shkarin 2) SHA-256: Wei Dai (Crypto++ library) 9 | 10 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Libtool-exception.template.txt: -------------------------------------------------------------------------------- 1 | As a special exception to the GNU<> Lesser<> General Public License, if you distribute this file as part of a program or library that is built using GNU Libtool, you may include this file under the same distribution terms that you use for the rest of that program. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Linux-man-pages-1-para.template.txt: -------------------------------------------------------------------------------- 1 | Permission is granted to distribute possibly modified copies of this page provided the header is included verbatim, and in case of nontrivial modification author and date of the modification is added to the header. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Linux-man-pages-copyleft-2-para.template.txt: -------------------------------------------------------------------------------- 1 | Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. 2 | 3 | Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. 4 | 5 | -------------------------------------------------------------------------------- /resources/spdx/default/template/MIPS.template.txt: -------------------------------------------------------------------------------- 1 | <> MIPS Computer Systems, Inc. grants reproduction and use rights to all parties, PROVIDED that this comment is maintained in the copy. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Martin-Birgmeier.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | You may redistribute unmodified or modified versions of this source code provided that the above copyright notice and this and the following conditions are retained. 3 | 4 | This software is provided ``as is'', and comes with no warranties of any kind. I shall in no event be liable for anything that happens to anyone/anything when using this software. 5 | 6 | -------------------------------------------------------------------------------- /resources/spdx/default/template/McPhee-slideshow.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | everyone is welcome to use this code for any purpose, to modify it, and to copy it in whole or in part for use in other macro sets, with the conditions that this copyright notice be preserved with any significant portion of the code, and that modifications to this file be clearly marked. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/NLPL.template.txt: -------------------------------------------------------------------------------- 1 | <>NO LIMIT PUBLIC LICENSE 2 | 3 | Version 0, June 2012 4 | 5 | <><> Gilles LAMIRAL 6 | 7 | La Billais 8 | 9 | 35580 Baulon 10 | 11 | France 12 | 13 | <><> NO LIMIT PUBLIC LICENSE 14 | 15 | <> 16 | Terms and conditions for copying, distribution, modification or anything else. 17 | 18 | <> No limit to do anything with this work and this license. -------------------------------------------------------------------------------- /resources/spdx/default/template/PADL.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | Redistribution and use in source and binary forms, with or without modification, are permitted provided that this notice is preserved and that due credit is given to PADL Software Pty Ltd. This software is provided ``as is'' without express or implied warranty. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/PCRE2-exception.template.txt: -------------------------------------------------------------------------------- 1 | EXEMPTION FOR BINARY LIBRARY-LIKE PACKAGES 2 | ------------------------------------------ 3 | 4 | The second condition in the BSD licence (covering binary redistributions) does not apply all the way down a chain of software. If binary package A includes PCRE2, it must respect the condition, but if package B is software that includes package A, the condition is not imposed on package B unless it uses PCRE2 independently. 5 | 6 | -------------------------------------------------------------------------------- /resources/spdx/default/template/PS-or-PDF-font-exception-20170817.template.txt: -------------------------------------------------------------------------------- 1 | <>The font and related files in this directory are distributed under the GNU AFFERO GENERAL PUBLIC LICENSE Version 3 (see the file COPYING), with the following exemption: 2 | 3 | <> 4 | As a special exception, permission is granted to include these font programs in a Postscript or PDF file that consists of a document that contains text to be displayed or printed using this font, regardless of the conditions or license applying to the document itself. 5 | 6 | -------------------------------------------------------------------------------- /resources/spdx/default/template/QPL-1.0-INRIA-2004-exception.template.txt: -------------------------------------------------------------------------------- 1 | As a special exception to the Q Public License, you may develop application programs, reusable components and other software items that link with the original or modified versions of the <> and are not made available to the general public, without any of the additional requirements listed in clause 6c of the Q Public license. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Ruby-pty.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | This software may be redistributed freely for this purpose, in full or in part, provided that this entire copyright notice is included on any copies of this software and applications and derivations thereof. 3 | 4 | This software is provided on an "as is" basis, without warranty of any kind, either expressed or implied, as to any matter including, but not limited to warranty of fitness of purpose, or merchantability, or results obtained from use of this software. 5 | 6 | -------------------------------------------------------------------------------- /resources/spdx/default/template/SAX-PD-2.0.template.txt: -------------------------------------------------------------------------------- 1 | <><> <><> 2 | I hereby abandon any property rights to SAX 2.0 (the Simple API for XML), and release all of the SAX 2.0 source code, compiled code, and documentation contained in this distribution into the Public Domain. SAX comes with NO WARRANTY or guarantee of fitness for any purpose. 3 | 4 | <> -------------------------------------------------------------------------------- /resources/spdx/default/template/SGP4.template.txt: -------------------------------------------------------------------------------- 1 | <>SGP4 Permission Notice<> 2 | There is no license associated with the code and you may use it for any purpose—personal or commercial—as you wish. We ask only that you include citations in your documentation and source code to show the source of the code and provide links to the main page, to facilitate communications regarding any questions on the theory or source code. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/SL.template.txt: -------------------------------------------------------------------------------- 1 | <>SL License<> 2 | Everyone is permitted to do anything on this program including copying, modifying, and improving, unless you try to pretend that you wrote it. i.e., the above copyright notice has to appear in all copies. THE AUTHOR DISCLAIMS ANY RESPONSIBILITY WITH REGARD TO THIS SOFTWARE. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/SSH-short.template.txt: -------------------------------------------------------------------------------- 1 | As far as I am concerned, the code I have written for this software can be used freely for any purpose. Any derived versions of this software must be clearly marked as such, and if the derived work is incompatible with the protocol description in the RFC file, it must be called by a name other than "ssh" or "Secure Shell". 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/SWI-exception.template.txt: -------------------------------------------------------------------------------- 1 | As a special exception, if you link this library with other files, compiled with a Free Software compiler, to produce an executable, this library does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General Public License. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/SchemeReport.template.txt: -------------------------------------------------------------------------------- 1 | We intend this report to belong to the entire Scheme community, and so we grant permission to copy it in whole or in part without fee. In particular, we encourage implementors of Scheme to use this report as a starting point for manuals and other documentation, modifying it as necessary. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Soundex.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | Freedom to use these sources for whatever you want, as long as credit is given where credit is due, is hereby granted. You may make modifications where you see fit but leave this copyright somewhere visible. As well, try to initial any changes you make so that if I like the changes I can incorporate them into later versions. 3 | 4 | - Mark Mielke 5 | 6 | -------------------------------------------------------------------------------- /resources/spdx/default/template/SunPro.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | Developed at <> , a Sun Microsystems, Inc. business. 3 | 4 | Permission to use, copy, modify, and distribute this software is freely granted, provided that this notice is preserved. 5 | 6 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Swift-exception.template.txt: -------------------------------------------------------------------------------- 1 | <><> Runtime Library Exception to the Apache 2.0 License: <> 2 | 3 | <> 4 | As an exception, if you use this Software to compile your source code and portions of this Software are embedded into the binary product as a result, you may redistribute such product without providing attribution as would otherwise be required by Sections 4(a), 4(b) and 4(d) of the License. 5 | 6 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Symlinks.template.txt: -------------------------------------------------------------------------------- 1 | My "symlinks" utility pre-dates the "open source licensing" fad by a number of years. Just to clarify, this is 100% freeware, written entirely by myself. The intent is to use it to detect missing/obsolete symlink targets on an installed distro, before creating the "gold" (or "final") release discs. 2 | 3 | Use and distribute and modify as you (or anyone else) sees fit. There have no formal restrictions or requirements whatsoever regarding distribution of either binaries or source code, whether modified or original. 4 | 5 | -------------------------------------------------------------------------------- /resources/spdx/default/template/TPDL.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | License hereby granted for anyone to use, modify or redistribute this module at their own risk. Please feed useful changes back to cpan@dave.sharnoff.org. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/TTWL.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | This module may be modified, used, copied, and redistributed at your own risk. Although allowed by the preceding license, please do not publicly redistribute modified versions of this code with the name "Text::Tabs" unless it passes the unmodified Text::Tabs test suite. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/TermReadKey.template.txt: -------------------------------------------------------------------------------- 1 | Unlimited distribution and/or modification is allowed as long as this copyright notice remains intact. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Texinfo-exception.template.txt: -------------------------------------------------------------------------------- 1 | As a special exception, when this file is read by TeX when processing a Texinfo source document, you may use the result without restriction. This Exception is an additional permission under section 7 of the GNU General Public License, version 3 ("GPLv3"). 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/ThirdEye.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | Third Eye Software, Inc. grants reproduction and use rights to all parties, PROVIDED that this comment is maintained in the copy. 3 | 4 | Third Eye makes no claims about the applicability of this symbol table to a particular use. 5 | 6 | -------------------------------------------------------------------------------- /resources/spdx/default/template/UnixCrypt.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | Permission to use, copy, modify and distribute this software for non-commercial or commercial purposes and without fee is hereby granted provided that this copyright notice appears in all copies. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/WTFPL.template.txt: -------------------------------------------------------------------------------- 1 | <>DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 2 | Version 2, December 2004 3 | 4 | <> 5 | Copyright (C) 2004 Sam Hocevar 6 | 7 | Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed. 8 | 9 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 10 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 11 | 12 | <> You just DO WHAT THE FUCK YOU WANT TO. -------------------------------------------------------------------------------- /resources/spdx/default/template/Xfig.template.txt: -------------------------------------------------------------------------------- 1 | Any party obtaining a copy of these files is granted, free of charge, a full and unrestricted irrevocable, world-wide, paid up, royalty-free, nonexclusive right and license to deal in this software and documentation files (the "Software"), including without limitation the rights to use, copy, modify, merge, publish and/or distribute copies of the Software, and to permit persons who receive copies from any such party to do so, with the only requirement being that this copyright notice remain intact. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Zed.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | You may copy and distribute this file freely. Any queries and complaints should be forwarded to Jim.Davies@comlab.ox.ac.uk. 3 | 4 | If you make any changes to this file, please do not distribute the results under the name `zed-csp.sty'. 5 | 6 | -------------------------------------------------------------------------------- /resources/spdx/default/template/Zeeff.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | You can use this code in any manner, as long as you leave my name on it and don't hold me responsible for any problems with it. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/any-OSI.template.txt: -------------------------------------------------------------------------------- 1 | Pick your favourite OSI approved license :) 2 | 3 | http://www.opensource.org/licenses/alphabetical 4 | 5 | -------------------------------------------------------------------------------- /resources/spdx/default/template/blessing.template.txt: -------------------------------------------------------------------------------- 1 | The author disclaims copyright to this source code. In place of a legal notice, here is a blessing: 2 | 3 | May you do good and not evil. 4 | 5 | May you find forgiveness for yourself and forgive others. 6 | 7 | May you share freely, never taking more than you give. 8 | 9 | -------------------------------------------------------------------------------- /resources/spdx/default/template/check-cvs.template.txt: -------------------------------------------------------------------------------- 1 | Permission is granted to copy and/or distribute this file, with or without modifications, provided this notice is preserved. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/checkmk.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | Redistribution of this program in any form, with or without modifications, is permitted, provided that the above copyright is retained in distributions of this program in source form. 3 | 4 | (This is a free, non-copyleft license compatible with pretty much any other free or proprietary license, including the GPL. It's essentially a scaled-down version of the "modified" BSD license.) 5 | 6 | -------------------------------------------------------------------------------- /resources/spdx/default/template/diffmark.template.txt: -------------------------------------------------------------------------------- 1 | 2 | <> you can do what you want with it 3 | <> I refuse any responsibility for the consequences -------------------------------------------------------------------------------- /resources/spdx/default/template/dvipdfm.template.txt: -------------------------------------------------------------------------------- 1 | A modified version of this file may be distributed, but it should be distributed with a *different* name. Changed files must be distributed *together with a complete and unchanged* distribution of these files. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/fmt-exception.template.txt: -------------------------------------------------------------------------------- 1 | <>--- Optional exception to the license --- 2 | 3 | <> 4 | As an exception, if, as a result of your compiling your source code, portions of this Software are embedded into a machine-executable object form of such source code, you may redistribute such embedded portions in such object form without including the above copyright and permission notices. 5 | 6 | -------------------------------------------------------------------------------- /resources/spdx/default/template/fwlw.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | This software package may be freely used, transmitted, reproduced, or modified provided that this notice is left intact. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/gnu-javamail-exception.template.txt: -------------------------------------------------------------------------------- 1 | As a special exception, if you link this library with other files to produce an executable, this library does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General Public License. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/gtkbook.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | This code is distributed without warranty. You are free to use this code for any purpose, however, if this code is republished or redistributed in its original form, as hardcopy or electronically, then you must include this copyright notice along with the code. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/hdparm.template.txt: -------------------------------------------------------------------------------- 1 | BSD-Style Open Source License: 2 | 3 | You may freely use, modify, and redistribute the hdparm program, as either binary or source, or both. 4 | 5 | The only condition is that my name and copyright notice remain in the source code as-is. 6 | 7 | <> -------------------------------------------------------------------------------- /resources/spdx/default/template/libpri-OpenH323-exception.template.txt: -------------------------------------------------------------------------------- 1 | As a special exception, libpri may also be linked to the OpenH323 library, so long as the entirity of the derivative work (as defined within the GPL) is licensed either under the MPL of the OpenH323 license or the GPL of libpri. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/magaz.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | This software may be freely used, transmitted, reproduced, or modified provided that the copyright notice and this permission is retained. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/mailprio.template.txt: -------------------------------------------------------------------------------- 1 | Copyright 1994, 1996, Tony Sanders 2 | 3 | Rights are hereby granted to download, use, modify, sell, copy, and redistribute this software so long as the original copyright notice and this list of conditions remain intact and modified versions are noted as such. 4 | 5 | I would also very much appreciate it if you could send me a copy of any changes you make so I can possibly integrate them into my version. 6 | 7 | -------------------------------------------------------------------------------- /resources/spdx/default/template/mif-exception.template.txt: -------------------------------------------------------------------------------- 1 | As a special exception, you may use this file as part of a free software library without restriction. Specifically, if other files instantiate templates or use macros or inline functions from this file, or you compile this file and link it with other files to produce an executable, this file does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General Public License. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/mplus.template.txt: -------------------------------------------------------------------------------- 1 | These fonts are free softwares. Unlimited permission is granted to use, copy, and distribute it, with or without modification, either commercially and noncommercially. THESE FONTS ARE PROVIDED "AS IS" WITHOUT WARRANTY. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/pkgconf.template.txt: -------------------------------------------------------------------------------- 1 | Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. 2 | 3 | This software is provided 'as is' and without any warranty, express or implied. In no event shall the authors be liable for any damages arising from the use of this software. 4 | 5 | -------------------------------------------------------------------------------- /resources/spdx/default/template/psfrag.template.txt: -------------------------------------------------------------------------------- 1 | <>psfrag.dtx 2 | 3 | <> <> 4 | This system is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Don't come complaining to us if you modify this file and it doesn't work! If this file is modified by anyone but the authors, those changes and their authors must be explicitly stated HERE. 5 | 6 | -------------------------------------------------------------------------------- /resources/spdx/default/template/python-ldap.template.txt: -------------------------------------------------------------------------------- 1 | The python-ldap package is distributed under Python-style license. 2 | 3 | Standard disclaimer: 4 | 5 | This software is made available by the author(s) to the public for free and "as is". All users of this free software are solely and entirely responsible for their own choice and use of this software for their own purposes. By using this software, each user agrees that the author(s) shall not be liable for damages of any kind in relation to its use or performance. The author(s) do not warrant that this software is fit for any purpose. 6 | 7 | -------------------------------------------------------------------------------- /resources/spdx/default/template/romic-exception.template.txt: -------------------------------------------------------------------------------- 1 | Additional permission under the GNU Affero GPL version 3 section 7: 2 | 3 | If you modify this Program, or any covered work, by linking or combining it with other code, such other code is not for that reason alone subject to any of the requirements of the GNU Affero GPL version 3. 4 | 5 | -------------------------------------------------------------------------------- /resources/spdx/default/template/snprintf.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | This code is based on code written by Patrick Powell (papowell@astart.com) It may be used for any purpose as long as this notice remains intact on all source code distributions 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/softSurfer.template.txt: -------------------------------------------------------------------------------- 1 | Copyright 2001, softSurfer (www.softsurfer.com) 2 | 3 | This code may be freely used and modified for any purpose providing that this copyright notice is included with it. SoftSurfer makes no warranty for this code, and cannot be held liable for any real or imagined damage resulting from its use. Users of this code must verify correctness for their application. 4 | 5 | -------------------------------------------------------------------------------- /resources/spdx/default/template/ssh-keyscan.template.txt: -------------------------------------------------------------------------------- 1 | <.";match=".{0,5000}">> 2 | Modification and redistribution in source and binary forms is permitted provided that due credit is given to the author and the OpenBSD project by leaving this copyright notice intact. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/swrule.template.txt: -------------------------------------------------------------------------------- 1 | The style package is copyrighted but may be used and extended in any way, as long as a pointer to the original author is maintained. The author is not liable for any problem that may or may not result from using this package. Use at your own risk. 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/threeparttable.template.txt: -------------------------------------------------------------------------------- 1 | This file may be distributed, modified, and used in other works with just one restriction: modified versions must clearly indicate the modification (a name change, or a displayed message, or ?). 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/template/ulem.template.txt: -------------------------------------------------------------------------------- 1 | <> 2 | <> may be freely transmitted, reproduced, or modified for any purpose provided that this<> copyright<> notice is left intact. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/vsftpd-openssl-exception.template.txt: -------------------------------------------------------------------------------- 1 | <>vsftpd is licensed under version 2 of the GNU GPL.<> 2 | As copyright holder, I give permission for vsftpd to be linked to the OpenSSL libraries. This includes permission for vsftpd binaries to be distributed linked against the OpenSSL libraries. All other obligations under the GPL v2 remain intact. 3 | 4 | -------------------------------------------------------------------------------- /resources/spdx/default/template/wwl.template.txt: -------------------------------------------------------------------------------- 1 | db@FreeBSD.ORG wrote this file. As long as you retain this notice you can do whatever you want with this code, except you may not license it under any form of the GPL. A postcard or QSL card showing me you appreciate this code would be nice. Diane Bruce va3db 2 | 3 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/ADSL.txt: -------------------------------------------------------------------------------- 1 | This software code is made available "AS IS" without warranties of any kind. You may copy, display, modify and redistribute the software code either by itself or as incorporated into your code; provided that you do not remove any proprietary notices. Your use of this software code is at your own risk and you waive any claim against Amazon Digital Services, Inc. or its affiliates with respect to your use of this software code. (c) 2006 Amazon Digital Services, Inc. or its affiliates. 2 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/AMD-newlib.txt: -------------------------------------------------------------------------------- 1 | Copyright 1989, 1990 Advanced Micro Devices, Inc. 2 | 3 | This software is the property of Advanced Micro Devices, Inc (AMD) which 4 | specifically grants the user the right to modify, use and distribute this 5 | software provided this notice is not removed or altered. All other rights 6 | are reserved by AMD. 7 | 8 | AMD MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH REGARD TO THIS 9 | SOFTWARE. IN NO EVENT SHALL AMD BE LIABLE FOR INCIDENTAL OR CONSEQUENTIAL 10 | DAMAGES IN CONNECTION WITH OR ARISING FROM THE FURNISHING, PERFORMANCE, OR 11 | USE OF THIS SOFTWARE. 12 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/AdaCore-doc.txt: -------------------------------------------------------------------------------- 1 | This document may be copied, in whole or in part, in any form or by any means, as is or with alterations, provided that (1) alterations are clearly marked as alterations and (2) this copyright notice is included unmodified in any copy. 2 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Adobe-Utopia.txt: -------------------------------------------------------------------------------- 1 | Permission to use, reproduce, display and distribute the listed typefaces 2 | is hereby granted, provided that the Adobe Copyright notice appears in all 3 | whole and partial copies of the software and that the following trademark 4 | symbol and attribution appear in all unmodified copies of the software: 5 | 6 | The Adobe typefaces (Type 1 font program, bitmaps and Adobe Font Metric 7 | files) donated are: 8 | 9 | Utopia Regular 10 | Utopia Italic 11 | Utopia Bold 12 | Utopia Bold Italic 13 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/App-s2p.txt: -------------------------------------------------------------------------------- 1 | COPYRIGHT and LICENSE 2 | 3 | This program is free and open software. You may use, modify, 4 | distribute, and sell this program (and any modified variants) in any 5 | way you wish, provided you do not restrict others from doing the same. 6 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Asterisk-exception.txt: -------------------------------------------------------------------------------- 1 | In addition, when this program is distributed with Asterisk in any 2 | form that would qualify as a 'combined work' or as a 'derivative work' 3 | (but not mere aggregation), you can redistribute and/or modify the 4 | combination under the terms of the license provided with that copy 5 | of Asterisk, instead of the license terms granted here. 6 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Autoconf-exception-generic-3.0.txt: -------------------------------------------------------------------------------- 1 | As a special exception to the GNU General Public License, if you 2 | distribute this file as part of a program that contains a 3 | configuration script generated by Autoconf, you may include it under 4 | the same distribution terms that you use for the rest of that 5 | program. This Exception is an additional permission under section 7 6 | of the GNU General Public License, version 3 ("GPLv3"). 7 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Autoconf-exception-generic.txt: -------------------------------------------------------------------------------- 1 | As a special exception to the GNU General Public License, 2 | if you distribute this file as part of a program that contains 3 | a configuration script generated by Autoconf, you may include 4 | it under the same distribution terms that you use for the rest of that program. 5 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/BSD-4.3RENO.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 1987 Regents of the University of California. 2 | All rights reserved. 3 | 4 | Redistribution and use in source and binary forms are permitted 5 | provided that this notice is preserved and that due credit is given 6 | to the University of California at Berkeley. The name of the University 7 | may not be used to endorse or promote products derived from this 8 | software without specific written prior permission. This software 9 | is provided ``as is'' without express or implied warranty. 10 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Baekmuk.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 1986-2002 Kim Jeong-Hwan All rights reserved. 2 | 3 | Permission to use, copy, modify and distribute this font 4 | is hereby granted, provided that both the copyright notice 5 | and this permission notice appear in all copies of the 6 | font, derivative works or modified versions, and that the 7 | following acknowledgement appear in supporting documentation: 8 | Baekmuk Batang, Baekmuk Dotum, Baekmuk Gulim, and Baekmuk 9 | Headline are registered trademarks owned by Kim Jeong-Hwan. 10 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Barr.txt: -------------------------------------------------------------------------------- 1 | This is a package of commutative diagram macros built on top of Xy-pic by Michael Barr (email: barr@barrs.org). Its use is unrestricted. It may be freely distributed, unchanged, for non-commercial or commercial use. If changed, it must be renamed. Inclusion in a commercial software package is also permitted, but I would appreciate receiving a free copy for my personal examination and use. There are no guarantees that this package is good for anything. I have tested it with LaTeX 2e, LaTeX 2.09 and Plain TeX. Although I know of no reason it will not work with AMSTeX, I have not tested it. 2 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Beerware.txt: -------------------------------------------------------------------------------- 1 | "THE BEER-WARE LICENSE" (Revision 42): wrote this file. As long as you retain this notice you can do whatever you want with this stuff. If we meet some day, and you think this stuff is worth it, you can buy me a beer in return Poul-Henning Kamp 2 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Bison-exception-1.24.txt: -------------------------------------------------------------------------------- 1 | As a special exception, when this file is copied by Bison into a 2 | Bison output file, you may use that output file without restriction. 3 | This special exception was added by the Free Software Foundation 4 | in version 1.24 of Bison. 5 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Boehm-GC.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) ... 2 | 3 | THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED 4 | OR IMPLIED. ANY USE IS AT YOUR OWN RISK. 5 | 6 | Permission is hereby granted to use or copy this program 7 | for any purpose, provided the above notices are retained on all copies. 8 | Permission to modify the code and to distribute modified code is granted, 9 | provided the above notices are retained, and a notice that the code was 10 | modified is included with the above copyright notice. 11 | 12 | A few files have other copyright holders. 13 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Bootloader-exception.txt: -------------------------------------------------------------------------------- 1 | Bootloader Exception 2 | -------------------- 3 | 4 | In addition to the permissions in the GNU General Public License, the 5 | authors give you unlimited permission to link or embed compiled bootloader 6 | and related files into combinations with other programs, and to distribute 7 | those combinations without any restriction coming from the use of those 8 | files. (The General Public License restrictions do apply in other respects; 9 | for example, they cover modification of the files, and distribution when 10 | not linked into a combine executable.) 11 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/CGAL-linking-exception.txt: -------------------------------------------------------------------------------- 1 | As a special exception, you have permission to link this library 2 | with the CGAL library (http://www.cgal.org) and distribute executables, 3 | as long as you follow the requirements of the GNU GPL in regard to 4 | all of the software in the executable aside from CGAL. 5 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/CMU-Mach-nodoc.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2002 Naval Research Laboratory (NRL/CCS) 2 | 3 | Permission to use, copy, modify and distribute this software and 4 | its documentation is hereby granted, provided that both the 5 | copyright notice and this permission notice appear in all copies of 6 | the software, derivative works or modified versions, and any 7 | portions thereof. 8 | 9 | NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND 10 | DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER 11 | RESULTING FROM THE USE OF THIS SOFTWARE. 12 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Crossword.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 1995-2009 Gerd Neugebauer 2 | 3 | cwpuzzle.dtx is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any particular purpose or works at all, unless he says so in writing. 4 | 5 | Everyone is granted permission to copy, modify and redistribute cwpuzzle.dtx, provided this copyright notice is preserved and any modifications are indicated. 6 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Dotseqn.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 1995 by Donald Arseneau 2 | 3 | This file may be freely transmitted and reproduced, but it may not be changed unless the name is changed also (except that you may freely change the paper-size option for \documentclass). 4 | 5 | This notice must be left intact. 6 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/FBM.txt: -------------------------------------------------------------------------------- 1 | Portions of this code Copyright (C) 1989 by Michael Mauldin. 2 | Permission is granted to use this file in whole or in 3 | part for any purpose, educational, recreational or commercial, 4 | provided that this copyright notice is retained unchanged. 5 | This software is available to all free of charge by anonymous 6 | FTP and in the UUNET archives. 7 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/FSFAP-no-warranty-disclaimer.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2008 Micah J. Cowan 2 | 3 | Copying and distribution of this file, with or without modification, 4 | are permitted in any medium without royalty provided the copyright 5 | notice and this notice are preserved. 6 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/FSFAP.txt: -------------------------------------------------------------------------------- 1 | Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without any warranty. 2 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/FSFUL.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. 2 | 3 | This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. 4 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/FSFULLR.txt: -------------------------------------------------------------------------------- 1 | Copyright 1996-2006 Free Software Foundation, Inc. 2 | 3 | This file is free software; the Free Software Foundation gives unlimited permission to copy and/or distribute it, with or without modifications, as long as this notice is preserved. 4 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/FSFULLRWD.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2 | 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. 3 | 4 | This Makefile.in is free software; the Free Software Foundation 5 | gives unlimited permission to copy and/or distribute it, 6 | with or without modifications, as long as this notice is preserved. 7 | 8 | This program is distributed in the hope that it will be useful, 9 | but WITHOUT ANY WARRANTY, to the extent permitted by law; without 10 | even the implied warranty of MERCHANTABILITY or FITNESS FOR A 11 | PARTICULAR PURPOSE. 12 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Fair.txt: -------------------------------------------------------------------------------- 1 | Fair License 2 | 3 | 4 | 5 | Usage of the works is permitted provided that this instrument is retained with the works, so that any entity that uses the works is notified of this instrument. 6 | 7 | DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY. 8 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Font-exception-2.0.txt: -------------------------------------------------------------------------------- 1 | As a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by itself cause the resulting document to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. 2 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/GCC-exception-2.0.txt: -------------------------------------------------------------------------------- 1 | In addition to the permissions in the GNU General Public License, the Free Software Foundation gives you unlimited permission to link the compiled version of this file into combinations with other programs, and to distribute those combinations without any restriction coming from the use of this file. (The General Public License restrictions do apply in other respects; for example, they cover modification of the file, and distribution when not linked into a combine executable.) 2 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/GNAT-exception.txt: -------------------------------------------------------------------------------- 1 | As a special exception, if other files instantiate generics from this 2 | unit, or you link this unit with other files to produce an executable, 3 | this unit does not by itself cause the resulting executable to be 4 | covered by the GNU General Public License. This exception does not 5 | however invalidate any other reasons why the executable file might be 6 | covered by the GNU Public License. 7 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/GNOME-examples-exception.txt: -------------------------------------------------------------------------------- 1 | As a special exception, the copyright holders give you permission to copy, modify, and distribute the example code contained in this document under the terms of your choosing, without restriction. 2 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/GNU-compiler-exception.txt: -------------------------------------------------------------------------------- 1 | As a special exception, if you link this library with files 2 | compiled with a GNU compiler to produce an executable, this 3 | does not cause the resulting executable to be covered by 4 | the GNU General Public License. This exception does not 5 | however invalidate any other reasons why the executable 6 | file might be covered by the GNU General Public License. 7 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/GPL-3.0-linking-exception.txt: -------------------------------------------------------------------------------- 1 | Additional permission under GNU GPL version 3 section 7 2 | 3 | If you modify this Program, or any covered work, by linking or combining it with [name of library] (or a modified version of that library), containing parts covered by the terms of [name of library's license], the licensors of this Program grant you additional permission to convey the resulting work. 4 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/GPL-3.0-linking-source-exception.txt: -------------------------------------------------------------------------------- 1 | Additional permission under GNU GPL version 3 section 7 2 | 3 | If you modify this Program, or any covered work, by linking or combining it with [name of library] (or a modified version of that library), containing parts covered by the terms of [name of library's license], the licensors of this Program grant you additional permission to convey the resulting work. Corresponding Source for a non-source form of such a combination shall include the source code for the parts of [name of library] used as well as that of the covered work. 4 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/GStreamer-exception-2005.txt: -------------------------------------------------------------------------------- 1 | The Totem project hereby grant permission for non-gpl compatible GStreamer plugins to be used and distributed together with GStreamer and Totem. This permission are above and beyond the permissions granted by the GPL license Totem is covered by. 2 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/GStreamer-exception-2008.txt: -------------------------------------------------------------------------------- 1 | This project hereby grants permission for non-GPL compatible GStreamer plugins to be used and distributed together with GStreamer and this project. This permission is above and beyond the permissions granted by the GPL license by which this project is covered. If you modify this code, you may extend this exception to your version of the code, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. 2 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Glulxe.txt: -------------------------------------------------------------------------------- 1 | The source code in this package is copyright 1999-2010 by Andrew Plotkin. 2 | 3 | You may copy and distribute it freely, by any means and under any conditions, as long as the code and documentation is not changed. You may also incorporate this code into your own program and distribute that, or modify this code and use and distribute the modified version, as long as you retain a notice in your program or documentation which mentions my name and the URL shown above. 4 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Gutmann.txt: -------------------------------------------------------------------------------- 1 | You can use this code in whatever way you want, as long as you don't try 2 | to claim you wrote it. 3 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/HIDAPI.txt: -------------------------------------------------------------------------------- 1 | This software may be used by anyone for any reason so long 2 | as the copyright notice in the source files remains intact. 3 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/HPND-Kevlin-Henney.txt: -------------------------------------------------------------------------------- 1 | Copyright Kevlin Henney, 1997, 2003, 2012. All rights reserved. 2 | 3 | Permission to use, copy, modify, and distribute this software and its 4 | documentation for any purpose is hereby granted without fee, provided 5 | that this copyright and permissions notice appear in all copies and 6 | derivatives. 7 | 8 | This software is supplied "as is" without express or implied warranty. 9 | 10 | But that said, if there are any problems please get in touch. 11 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/HPND-Markus-Kuhn.txt: -------------------------------------------------------------------------------- 1 | Permission to use, copy, modify, and distribute this software 2 | for any purpose and without fee is hereby granted. The author 3 | disclaims all warranties with regard to this software. 4 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/HPND-Netrek.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 1995 S. M. Patel (smpatel@wam.umd.edu) 2 | 3 | Permission to use, copy, modify, and distribute this 4 | software and its documentation for any purpose and without 5 | fee is hereby granted, provided that the above copyright 6 | notice appear in all copies and that both that copyright 7 | notice and this permission notice appear in supporting 8 | documentation. No representations are made about the 9 | suitability of this software for any purpose. It is 10 | provided "as is" without express or implied warranty. 11 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/HPND-Pbmplus.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 1991 by Jef Poskanzer. 2 | 3 | Permission to use, copy, modify, and distribute this software and its 4 | documentation for any purpose and without fee is hereby granted, provided 5 | that the above copyright notice appear in all copies and that both that 6 | copyright notice and this permission notice appear in supporting 7 | documentation. This software is provided "as is" without express or 8 | implied warranty. 9 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/HPND-UC-export-US.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 1985, 1990 Regents of the University of California. 2 | 3 | Permission to use, copy, modify, and distribute this 4 | software and its documentation for any purpose and without 5 | fee is hereby granted, provided that the above copyright 6 | notice appear in all copies. The University of California 7 | makes no representations about the suitability of this 8 | software for any purpose. It is provided "as is" without 9 | express or implied warranty. Export of this software outside 10 | of the United States of America may require an export license. 11 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/HPND-UC.txt: -------------------------------------------------------------------------------- 1 | Copyright 1989 Regents of the University of California 2 | 3 | Permission to use, 4 | copy, modify, and distribute this software and its documentation for any 5 | purpose and without fee is hereby granted, provided that the above 6 | copyright notice appear in all copies. The University of California makes 7 | no representations about the suitability of this software for any purpose. 8 | It is provided "as is" without express or implied warranty. 9 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/HPND-doc-sell.txt: -------------------------------------------------------------------------------- 1 | Copyright 2 | 3 | Permission to use, copy, modify, distribute, and sell this 4 | documentation for any purpose is hereby granted without fee, 5 | provided that the above copyright notice and this permission 6 | notice appear in all copies. 7 | makes no representations about the suitability for any purpose 8 | of the information in this document. This documentation 9 | is provided "as is" without express or implied warranty. 10 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/HPND-doc.txt: -------------------------------------------------------------------------------- 1 | Copyright 2 | 3 | Permission to use, copy, modify, and distribute this documentation for 4 | any purpose and without fee is hereby granted, provided that the above 5 | copyright notice and this permission notice appear in all copies. 6 | makes no representations about the suitability for 7 | any purpose of the information in this document. This documentation is 8 | provided ``as is'' without express or implied warranty. 9 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/HPND-merchantability-variant.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2004 Christian Groessler 2 | 3 | Permission to use, copy, modify, and distribute this file 4 | for any purpose is hereby granted without fee, provided that 5 | the above copyright notice and this notice appears in all 6 | copies. 7 | 8 | This file is distributed WITHOUT ANY WARRANTY; without even the implied 9 | warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 10 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/HPND-sell-regexpr.txt: -------------------------------------------------------------------------------- 1 | Author: Tatu Ylonen 2 | 3 | Copyright (c) 1991 Tatu Ylonen, Espoo, Finland 4 | 5 | Permission to use, copy, modify, distribute, and sell this software 6 | and its documentation for any purpose is hereby granted without 7 | fee, provided that the above copyright notice appear in all copies. 8 | This software is provided "as is" without express or implied 9 | warranty. 10 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/ISC-Veillard.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2003-2012 Daniel Veillard. 2 | Permission to use, copy, 3 | modify, and distribute this software for any purpose with or 4 | without fee is hereby granted, provided that the above copyright 5 | notice and this permission notice appear in all copies. THIS 6 | SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED 7 | WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES 8 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS 9 | AND CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER. 10 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Jam.txt: -------------------------------------------------------------------------------- 1 | License is hereby granted to use this software and distribute it freely, 2 | as long as this copyright notice is retained and modifications are 3 | clearly marked. 4 | 5 | ALL WARRANTIES ARE HEREBY DISCLAIMED. 6 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Kastrup.txt: -------------------------------------------------------------------------------- 1 | Copyright(c) 2001 by David Kastrup 2 | Any use of the code is permitted as long as this copyright 3 | notice is preserved in the code. 4 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/KiCad-libraries-exception.txt: -------------------------------------------------------------------------------- 1 | To the extent that the creation of electronic designs that use 'Licensed Material' can be considered to be 'Adapted Material', then the copyright holder waives article 3 of the license with respect to these designs and any generated files which use data provided as part of the 'Licensed Material'. 2 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Knuth-CTAN.txt: -------------------------------------------------------------------------------- 1 | This software is copyrighted. Unlimited copying and redistribution 2 | of this package and/or its individual files are permitted 3 | as long as there are no modifications. Modifications, and 4 | redistribution of modifications, are also permitted, but 5 | only if the resulting package and/or files are renamed. 6 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/LPD-document.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 1996 L. Peter Deutsch 2 | 3 | Permission is granted to copy and distribute this 4 | document for any purpose and without charge, including 5 | translations into other languages and incorporation 6 | into compilations, provided that the copyright notice 7 | and this notice are preserved, and that any substantive 8 | changes or deletions from the original are clearly marked. 9 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/LZMA-SDK-9.11-to-9.20.txt: -------------------------------------------------------------------------------- 1 | LICENSE 2 | ------- 3 | 4 | LZMA SDK is written and placed in the public domain by Igor Pavlov. 5 | 6 | Some code in LZMA is based on public domain code from another developers: 7 | 1) PPMd var.H (2001): Dmitry Shkarin 8 | 2) SHA-256: Wei Dai (Crypto++ library) 9 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/LZMA-exception.txt: -------------------------------------------------------------------------------- 1 | I.6 Special exception for LZMA compression module 2 | 3 | Igor Pavlov and Amir Szekely, the authors of the LZMA compression module for NSIS, expressly permit you to statically or dynamically link your code (or bind by name) to the files from the LZMA compression module for NSIS without subjecting your linked code to the terms of the Common Public license version 1.0. Any modifications or additions to files from the LZMA compression module for NSIS, however, are subject to the terms of the Common Public License version 1.0. 4 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Libtool-exception.txt: -------------------------------------------------------------------------------- 1 | As a special exception to the GNU General Public License, if you distribute this file as part of a program or library that is built using GNU Libtool, you may include this file under the same distribution terms that you use for the rest of that program. 2 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Linux-man-pages-1-para.txt: -------------------------------------------------------------------------------- 1 | Permission is granted to distribute possibly modified 2 | copies of this page provided the header is included 3 | verbatim, and in case of nontrivial modification author 4 | and date of the modification is added to the header. 5 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Linux-man-pages-copyleft-2-para.txt: -------------------------------------------------------------------------------- 1 | Permission is granted to make and distribute verbatim copies of this 2 | manual provided the copyright notice and this permission notice are 3 | preserved on all copies. 4 | 5 | Permission is granted to copy and distribute modified versions of this 6 | manual under the conditions for verbatim copying, provided that the 7 | entire resulting derived work is distributed under the terms of a 8 | permission notice identical to this one. 9 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/MIPS.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 1992, 1991, 1990 MIPS Computer Systems, Inc. 2 | MIPS Computer Systems, Inc. grants reproduction and use 3 | rights to all parties, PROVIDED that this comment is 4 | maintained in the copy. 5 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Martin-Birgmeier.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 1993 Martin Birgmeier All rights reserved. 2 | 3 | You may redistribute unmodified or modified versions of this source code provided that the above copyright notice and this and the following conditions are retained. 4 | 5 | This software is provided ``as is'', and comes with no warranties of any kind. I shall in no event be liable for anything that happens to anyone/anything when using this software. 6 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/McPhee-slideshow.txt: -------------------------------------------------------------------------------- 1 | Copyright 2001, Patrick TJ McPhee 2 | everyone is welcome to use this code for any purpose, to modify it, and 3 | to copy it in whole or in part for use in other macro sets, with the 4 | conditions that this copyright notice be preserved with any significant 5 | portion of the code, and that modifications to this file be clearly 6 | marked. 7 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/NLPL.txt: -------------------------------------------------------------------------------- 1 | NO LIMIT PUBLIC LICENSE 2 | Version 0, June 2012 3 | 4 | Gilles LAMIRAL 5 | La Billais 6 | 35580 Baulon 7 | France 8 | 9 | NO LIMIT PUBLIC LICENSE 10 | 11 | Terms and conditions for copying, distribution, modification 12 | or anything else. 13 | 14 | 0. No limit to do anything with this work and this license. 15 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/NTP-0.txt: -------------------------------------------------------------------------------- 1 | NTP No Attribution (NTP-0) 2 | 3 | Copyright (4-digit-year) by (CopyrightHoldersName) 4 | 5 | Permission to use, copy, modify, and distribute this software and its documentation for any purpose is hereby granted, provided that the name of (TrademarkedName) not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. (TrademarkedName) make no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. 6 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Newsletr.txt: -------------------------------------------------------------------------------- 1 | Copyright 1989--2004 by Hunter Goatley. 2 | 3 | Permission is granted to anyone to use this software for any purpose on any computer system, and to redistribute it freely, subject to the following restrictions: 4 | 5 | 1. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 6 | 7 | 2. Altered versions must be plainly marked as such, and must not be misrepresented as being the original software. 8 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/PADL.txt: -------------------------------------------------------------------------------- 1 | Portions (C) Copyright PADL Software Pty Ltd. 1999 2 | 3 | Redistribution and use in source and binary forms, with or without 4 | modification, are permitted provided that this notice is preserved 5 | and that due credit is given to PADL Software Pty Ltd. This software 6 | is provided ``as is'' without express or implied warranty. 7 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/PCRE2-exception.txt: -------------------------------------------------------------------------------- 1 | EXEMPTION FOR BINARY LIBRARY-LIKE PACKAGES 2 | ------------------------------------------ 3 | 4 | The second condition in the BSD licence (covering binary redistributions) does 5 | not apply all the way down a chain of software. If binary package A includes 6 | PCRE2, it must respect the condition, but if package B is software that 7 | includes package A, the condition is not imposed on package B unless it uses 8 | PCRE2 independently. 9 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/PS-or-PDF-font-exception-20170817.txt: -------------------------------------------------------------------------------- 1 | The font and related files in this directory are distributed under the 2 | GNU AFFERO GENERAL PUBLIC LICENSE Version 3 (see the file COPYING), with 3 | the following exemption: 4 | 5 | As a special exception, permission is granted to include these font 6 | programs in a Postscript or PDF file that consists of a document that 7 | contains text to be displayed or printed using this font, regardless 8 | of the conditions or license applying to the document itself. 9 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/QPL-1.0-INRIA-2004-exception.txt: -------------------------------------------------------------------------------- 1 | As a special exception to the Q Public Licence, you may develop 2 | application programs, reusable components and other software items 3 | that link with the original or modified versions of the Software 4 | and are not made available to the general public, without any of the 5 | additional requirements listed in clause 6c of the Q Public licence. 6 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Ruby-pty.txt: -------------------------------------------------------------------------------- 1 | (c) Copyright 1998 by Akinori Ito. 2 | 3 | This software may be redistributed freely for this purpose, in full 4 | or in part, provided that this entire copyright notice is included 5 | on any copies of this software and applications and derivations thereof. 6 | 7 | This software is provided on an "as is" basis, without warranty of any 8 | kind, either expressed or implied, as to any matter including, but not 9 | limited to warranty of fitness of purpose, or merchantability, or 10 | results obtained from use of this software. 11 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/SAX-PD-2.0.txt: -------------------------------------------------------------------------------- 1 | SAX2 is Free! 2 | 3 | I hereby abandon any property rights to SAX 2.0 (the Simple API for 4 | XML), and release all of the SAX 2.0 source code, compiled code, and 5 | documentation contained in this distribution into the Public Domain. 6 | SAX comes with NO WARRANTY or guarantee of fitness for any 7 | purpose. 8 | 9 | David Megginson, david@megginson.com 10 | 2000-05-05 11 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/SGP4.txt: -------------------------------------------------------------------------------- 1 | There is no license associated with the code and you may use it for any purpose—personal or commercial—as you wish. We ask only that you include citations in your documentation and source code to show the source of the code and provide links to the main page, to facilitate communications regarding any questions on the theory or source code. 2 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/SL.txt: -------------------------------------------------------------------------------- 1 | Everyone is permitted to do anything on this program including copying, 2 | modifying, and improving, unless you try to pretend that you wrote it. 3 | i.e., the above copyright notice has to appear in all copies. 4 | THE AUTHOR DISCLAIMS ANY RESPONSIBILITY WITH REGARD TO THIS SOFTWARE. 5 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/SSH-short.txt: -------------------------------------------------------------------------------- 1 | As far as I am concerned, the code I have written for this software 2 | can be used freely for any purpose. Any derived versions of this 3 | software must be clearly marked as such, and if the derived work is 4 | incompatible with the protocol description in the RFC file, it must be 5 | called by a name other than "ssh" or "Secure Shell". 6 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/SWI-exception.txt: -------------------------------------------------------------------------------- 1 | As a special exception, if you link this library with other files, 2 | compiled with a Free Software compiler, to produce an executable, this 3 | library does not by itself cause the resulting executable to be covered 4 | by the GNU General Public License. This exception does not however 5 | invalidate any other reasons why the executable file might be covered by 6 | the GNU General Public License. 7 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/SchemeReport.txt: -------------------------------------------------------------------------------- 1 | We intend this report to belong to the entire Scheme community, and so we grant permission 2 | to copy it in whole or in part without fee. In particular, we encourage implementors of Scheme 3 | to use this report as a starting point for manuals and other documentation, modifying it as necessary. 4 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Soundex.txt: -------------------------------------------------------------------------------- 1 | (c) Copyright 1998-2007 by Mark Mielke 2 | 3 | Freedom to use these sources for whatever you want, as long as credit 4 | is given where credit is due, is hereby granted. You may make modifications 5 | where you see fit but leave this copyright somewhere visible. As well, try 6 | to initial any changes you make so that if I like the changes I can 7 | incorporate them into later versions. 8 | 9 | - Mark Mielke 10 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/SunPro.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. 2 | 3 | Developed at SunSoft, a Sun Microsystems, Inc. business. 4 | Permission to use, copy, modify, and distribute this 5 | software is freely granted, provided that this notice 6 | is preserved. 7 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Swift-exception.txt: -------------------------------------------------------------------------------- 1 | ### Runtime Library Exception to the Apache 2.0 License: ### 2 | 3 | As an exception, if you use this Software to compile your source code and 4 | portions of this Software are embedded into the binary product as a result, 5 | you may redistribute such product without providing attribution as would 6 | otherwise be required by Sections 4(a), 4(b) and 4(d) of the License. 7 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Symlinks.txt: -------------------------------------------------------------------------------- 1 | My "symlinks" utility pre-dates the "open source licensing" 2 | fad by a number of years. Just to clarify, this is 100% 3 | freeware, written entirely by myself. The intent is to use 4 | it to detect missing/obsolete symlink targets on an installed 5 | distro, before creating the "gold" (or "final") release discs. 6 | 7 | Use and distribute and modify as you (or anyone 8 | else) sees fit. There have no formal restrictions or 9 | requirements whatsoever regarding distribution of either 10 | binaries or source code, whether modified or original. 11 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/TPDL.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 1996-2010 David Muir Sharnoff. Copyright (C) 2011 Google, Inc. 2 | License hereby granted for anyone to use, modify or redistribute this module at their own risk. Please feed useful changes back to cpan@dave.sharnoff.org. 3 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/TTWL.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 1996-2002,2005,2006 David Muir Sharnoff. 2 | Copyright (C) 2005 Aristotle Pagaltzis 3 | Copyright (C) 2012-2013 Google, Inc. 4 | 5 | This module may be modified, used, copied, and redistributed at your own risk. 6 | Although allowed by the preceding license, please do not publicly 7 | redistribute modified versions of this code with the name "Text::Tabs" 8 | unless it passes the unmodified Text::Tabs test suite. 9 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/TermReadKey.txt: -------------------------------------------------------------------------------- 1 | Unlimited distribution and/or modification is allowed as long as this copyright notice remains intact. 2 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Texinfo-exception.txt: -------------------------------------------------------------------------------- 1 | As a special exception, when this file is read by TeX when 2 | processing a Texinfo source document, you may use the result without 3 | restriction. This Exception is an additional permission under 4 | section 7 of the GNU General Public License, version 3 ("GPLv3"). 5 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/ThirdEye.txt: -------------------------------------------------------------------------------- 1 | (C) Copyright 1984 by Third Eye Software, Inc. 2 | 3 | Third Eye Software, Inc. grants reproduction and use rights to 4 | all parties, PROVIDED that this comment is maintained in the copy. 5 | 6 | Third Eye makes no claims about the applicability of this 7 | symbol table to a particular use. 8 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/UnixCrypt.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 1996 Aki Yoshida. All rights reserved. 2 | 3 | Permission to use, copy, modify and distribute this software 4 | for non-commercial or commercial purposes and without fee is 5 | hereby granted provided that this copyright notice appears in 6 | all copies. 7 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/WTFPL.txt: -------------------------------------------------------------------------------- 1 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 2 | Version 2, December 2004 3 | 4 | Copyright (C) 2004 Sam Hocevar 5 | 6 | Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed. 7 | 8 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 9 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 10 | 11 | 0. You just DO WHAT THE FUCK YOU WANT TO. 12 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Wsuipa.txt: -------------------------------------------------------------------------------- 1 | This file was added by Clea F. Rees on 2008/11/30 with the permission of Dean Guenther and pointers to this file were added to all source files. 2 | 3 | Unlimited copying and redistribution of each of the files is permitted as long as the file is not modified. Modifications, and redistribution of modified versions, are also permitted, but only if the resulting file is renamed. 4 | 5 | The copyright holder is Washington State University. The original author of the fonts is Janene Winter. The primary contact (as of 2008) is Dean Guenther. 6 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/XSkat.txt: -------------------------------------------------------------------------------- 1 | This program is free software; you can redistribute it freely. 2 | Use it at your own risk; there is NO WARRANTY. 3 | 4 | Redistribution of modified versions is permitted provided that the following conditions are met: 5 | 6 | 1. All copyright & permission notices are preserved. 7 | 8 | 2.a) Only changes required for packaging or porting are made. 9 | or 10 | 2.b) It is clearly stated who last changed the program. The program is renamed or the version number is of the form x.y.z, where x.y is the version of the original program and z is an arbitrary suffix. 11 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Xfig.txt: -------------------------------------------------------------------------------- 1 | Any party obtaining a copy of these files is granted, free of charge, 2 | a full and unrestricted irrevocable, world-wide, paid up, royalty-free, 3 | nonexclusive right and license to deal in this software and documentation 4 | files (the "Software"), including without limitation the rights to use, 5 | copy, modify, merge, publish and/or distribute copies of the Software, 6 | and to permit persons who receive copies from any such party to do so, 7 | with the only requirement being that this copyright notice remain intact. 8 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Zed.txt: -------------------------------------------------------------------------------- 1 | (c) Jim Davies, January 1995 2 | You may copy and distribute this file freely. Any queries and complaints should be forwarded to Jim.Davies@comlab.ox.ac.uk. 3 | If you make any changes to this file, please do not distribute the results under the name `zed-csp.sty'. 4 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/Zeeff.txt: -------------------------------------------------------------------------------- 1 | Copyright 1988 Jon Zeeff (zeeff@b-tech.ann-arbor.mi.us) 2 | You can use this code in any manner, as long as you leave my 3 | name on it and don't hold me responsible for any problems with it. 4 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/any-OSI.txt: -------------------------------------------------------------------------------- 1 | Pick your favourite OSI approved license :) 2 | 3 | http://www.opensource.org/licenses/alphabetical 4 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/blessing.txt: -------------------------------------------------------------------------------- 1 | The author disclaims copyright to this source code. In place of a legal notice, here is a blessing: 2 | 3 | May you do good and not evil. 4 | May you find forgiveness for yourself and forgive others. 5 | May you share freely, never taking more than you give. 6 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/check-cvs.txt: -------------------------------------------------------------------------------- 1 | Permission is granted to copy and/or distribute this file, with or 2 | without modifications, provided this notice is preserved. 3 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/checkmk.txt: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2006, 2010 Micah Cowan 2 | # 3 | # Redistribution of this program in any form, with or without 4 | # modifications, is permitted, provided that the above copyright is 5 | # retained in distributions of this program in source form. 6 | # 7 | # (This is a free, non-copyleft license compatible with pretty much any 8 | # other free or proprietary license, including the GPL. It's essentially 9 | # a scaled-down version of the "modified" BSD license.) 10 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/diffmark.txt: -------------------------------------------------------------------------------- 1 | 1. you can do what you want with it 2 | 2. I refuse any responsibility for the consequences 3 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/dvipdfm.txt: -------------------------------------------------------------------------------- 1 | A modified version of this file may be distributed, but it should be distributed with a *different* name. Changed files must be distributed *together with a complete and unchanged* distribution of these files. 2 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/eCos-exception-2.0.txt: -------------------------------------------------------------------------------- 1 | As a special exception, if other files instantiate templates or use macros or inline functions from this file, or you compile this file and link it with other works to produce a work based on this file, this file does not by itself cause the resulting work to be covered by the GNU General Public License. However the source code for this file must still be made available in accordance with section (3) of the GNU General Public License. 2 | 3 | This exception does not invalidate any other reasons why a work based on this file might be covered by the GNU General Public License. 4 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/fmt-exception.txt: -------------------------------------------------------------------------------- 1 | --- Optional exception to the license --- 2 | 3 | As an exception, if, as a result of your compiling your source code, portions 4 | of this Software are embedded into a machine-executable object form of such 5 | source code, you may redistribute such embedded portions in such object form 6 | without including the above copyright and permission notices. 7 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/fwlw.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 1993,1995 by Donald Arseneau 2 | Vancouver, Canada, email asnd@triumf.ca 3 | 4 | This software package may be freely used, transmitted, reproduced, or modified provided that 5 | this notice is left intact. 6 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/gnu-javamail-exception.txt: -------------------------------------------------------------------------------- 1 | As a special exception, if you link this library with other files to produce an executable, this library does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General Public License. 2 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/gtkbook.txt: -------------------------------------------------------------------------------- 1 | Copyright 2005 Syd Logan, All Rights Reserved 2 | 3 | This code is distributed without warranty. You are free to use 4 | this code for any purpose, however, if this code is republished or 5 | redistributed in its original form, as hardcopy or electronically, 6 | then you must include this copyright notice along with the code. 7 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/hdparm.txt: -------------------------------------------------------------------------------- 1 | BSD-Style Open Source License: 2 | 3 | You may freely use, modify, and redistribute the hdparm program, 4 | as either binary or source, or both. 5 | 6 | The only condition is that my name and copyright notice 7 | remain in the source code as-is. 8 | 9 | Mark Lord (mlord@pobox.com) 10 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/libpri-OpenH323-exception.txt: -------------------------------------------------------------------------------- 1 | As a special exception, libpri may also be linked to the 2 | OpenH323 library, so long as the entirity of the derivative 3 | work (as defined within the GPL) is licensed either under 4 | the MPL of the OpenH323 license or the GPL of libpri. 5 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/magaz.txt: -------------------------------------------------------------------------------- 1 | Copyright 1999-2011, Donald Arseneau, asnd@triumf.ca, Vancouver, Canada 2 | 3 | This software may be freely used, transmitted, reproduced, or modified provided that 4 | the copyright notice and this permission is retained. 5 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/mailprio.txt: -------------------------------------------------------------------------------- 1 | Copyright 1994, 1996, Tony Sanders 2 | 3 | Rights are hereby granted to download, use, modify, sell, copy, and 4 | redistribute this software so long as the original copyright notice 5 | and this list of conditions remain intact and modified versions are 6 | noted as such. 7 | 8 | I would also very much appreciate it if you could send me a copy of 9 | any changes you make so I can possibly integrate them into my version. 10 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/mif-exception.txt: -------------------------------------------------------------------------------- 1 | As a special exception, you may use this file as part of a free software library without restriction. Specifically, if other files instantiate templates or use macros or inline functions from this file, or you compile this file and link it with other files to produce an executable, this file does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General Public License. 2 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/mplus.txt: -------------------------------------------------------------------------------- 1 | 2 | These fonts are free softwares. Unlimited permission is 3 | granted to use, copy, and distribute it, with or without 4 | modification, either commercially and noncommercially. 5 | THESE FONTS ARE PROVIDED "AS IS" WITHOUT WARRANTY. 6 | 7 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/pkgconf.txt: -------------------------------------------------------------------------------- 1 | Permission to use, copy, modify, and/or distribute this software for any 2 | purpose with or without fee is hereby granted, provided that the above 3 | copyright notice and this permission notice appear in all copies. 4 | 5 | This software is provided 'as is' and without any warranty, express or 6 | implied. In no event shall the authors be liable for any damages arising 7 | from the use of this software. 8 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/psfrag.txt: -------------------------------------------------------------------------------- 1 | psfrag.dtx 2 | Copyright (C) 1996 Craig Barratt, Michael C. Grant, and David Carlisle. 3 | All rights are reserved. 4 | 5 | This system is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Don't come complaining to us if you modify this file and it doesn't work! If this file is modified by anyone but the authors, those changes and their authors must be explicitly stated HERE. 6 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/python-ldap.txt: -------------------------------------------------------------------------------- 1 | The python-ldap package is distributed under Python-style license. 2 | 3 | Standard disclaimer: 4 | This software is made available by the author(s) to the public for free 5 | and "as is". All users of this free software are solely and entirely 6 | responsible for their own choice and use of this software for their 7 | own purposes. By using this software, each user agrees that the 8 | author(s) shall not be liable for damages of any kind in relation to 9 | its use or performance. The author(s) do not warrant that this software 10 | is fit for any purpose. 11 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/romic-exception.txt: -------------------------------------------------------------------------------- 1 | Additional permission under the GNU Affero GPL version 3 section 7: 2 | 3 | If you modify this Program, or any covered work, by linking or 4 | combining it with other code, such other code is not for that reason 5 | alone subject to any of the requirements of the GNU Affero GPL 6 | version 3. 7 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/snprintf.txt: -------------------------------------------------------------------------------- 1 | Copyright Patrick Powell 1995 2 | 3 | This code is based on code written by Patrick Powell (papowell@astart.com) It may be used for any purpose as long as this notice remains intact on all source code distributions 4 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/softSurfer.txt: -------------------------------------------------------------------------------- 1 | Copyright 2001, softSurfer (www.softsurfer.com) 2 | This code may be freely used and modified for any purpose 3 | providing that this copyright notice is included with it. 4 | SoftSurfer makes no warranty for this code, and cannot be held 5 | liable for any real or imagined damage resulting from its use. 6 | Users of this code must verify correctness for their application. 7 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/ssh-keyscan.txt: -------------------------------------------------------------------------------- 1 | * Copyright 1995, 1996 by David Mazieres . 2 | * 3 | * Modification and redistribution in source and binary forms is 4 | * permitted provided that due credit is given to the author and the 5 | * OpenBSD project by leaving this copyright notice intact. 6 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/swrule.txt: -------------------------------------------------------------------------------- 1 | The style package is copyrighted but may be used and extended in any way, as long as a pointer to the original author is maintained. The author is not liable for any problem that may or may not result from using this package. Use at your own risk. 2 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/threeparttable.txt: -------------------------------------------------------------------------------- 1 | This file may be distributed, modified, and used in other works with just 2 | one restriction: modified versions must clearly indicate the modification 3 | (a name change, or a displayed message, or ?). 4 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/ulem.txt: -------------------------------------------------------------------------------- 1 | Copyright 1989-2019 by Donald Arseneau (Vancouver, Canada, asnd@triumf.ca) 2 | 3 | This software may be freely transmitted, reproduced, or modified 4 | for any purpose provided that this copyright notice is left intact. 5 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/vsftpd-openssl-exception.txt: -------------------------------------------------------------------------------- 1 | vsftpd is licensed under version 2 of the GNU GPL. 2 | As copyright holder, I give permission for vsftpd to be linked to the OpenSSL 3 | libraries. This includes permission for vsftpd binaries to be distributed 4 | linked against the OpenSSL libraries. All other obligations under the GPL v2 5 | remain intact. 6 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/wwl.txt: -------------------------------------------------------------------------------- 1 | db@FreeBSD.ORG wrote this file. As long as you retain this notice you 2 | can do whatever you want with this code, except you may not 3 | license it under any form of the GPL. 4 | A postcard or QSL card showing me you appreciate 5 | this code would be nice. Diane Bruce va3db 6 | -------------------------------------------------------------------------------- /resources/spdx/default/testdata/xzoom.txt: -------------------------------------------------------------------------------- 1 | Copyright Itai Nahshon 1995, 1996. 2 | This program is distributed with no warranty. 3 | 4 | Source files for this program may be distributed freely. 5 | Modifications to this file are okay as long as: 6 | a. This copyright notice and comment are preserved and 7 | left at the top of the file. 8 | b. The man page is fixed to reflect the change. 9 | c. The author of this change adds his name and change 10 | description to the list of changes below. 11 | Executable files may be distributed with sources, or with 12 | exact location where the source code can be obtained. 13 | -------------------------------------------------------------------------------- /testdata/addAll/input/json/exceptions.json: -------------------------------------------------------------------------------- 1 | { 2 | "licenseListVersion": "3.17", 3 | "exceptions": [], 4 | "releaseDate": "2022-05-08" 5 | } -------------------------------------------------------------------------------- /testdata/addAll/input/json/licenses.json: -------------------------------------------------------------------------------- 1 | { 2 | "licenseListVersion": "3.17", 3 | "licenses": [ 4 | { 5 | "reference": "https://spdx.org/licenses/0BSD.html", 6 | "isDeprecatedLicenseId": false, 7 | "detailsUrl": "https://spdx.org/licenses/0BSD.json", 8 | "referenceNumber": 352, 9 | "name": "BSD Zero Clause License", 10 | "licenseId": "0BSD", 11 | "seeAlso": [ 12 | "http://landley.net/toybox/license.html", 13 | "https://opensource.org/licenses/0BSD" 14 | ], 15 | "isOsiApproved": true 16 | } 17 | ], 18 | "releaseDate": "2022-05-08" 19 | } -------------------------------------------------------------------------------- /testdata/addAll/input/no_json_licenses/json/no_license_json_file_here: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/license-scanner/ae5290aec316f6ab3dd5b5ede32d02d51b0f0927/testdata/addAll/input/no_json_licenses/json/no_license_json_file_here -------------------------------------------------------------------------------- /testdata/config/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "spdx": "none", 3 | "customPath": "../test-resources/custom/default" 4 | } 5 | 6 | -------------------------------------------------------------------------------- /testdata/duplicates/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "customPath": "resources/custom/default", 3 | "spdx": "none" 4 | } 5 | 6 | -------------------------------------------------------------------------------- /testdata/duplicates/resources/custom/default/license_patterns/DuplicateMatchTest/license_template.txt: -------------------------------------------------------------------------------- 1 | noprechecktext -------------------------------------------------------------------------------- /testdata/duplicates/resources/custom/default/license_patterns/DuplicateMatchTest/license_template_duplicate.txt: -------------------------------------------------------------------------------- 1 | noprechecktext -------------------------------------------------------------------------------- /testdata/importer/license_patterns/TESTIMP/associated_text.txt: -------------------------------------------------------------------------------- 1 | associated -------------------------------------------------------------------------------- /testdata/importer/license_patterns/TESTIMP/license_info.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test IMP", 3 | "family": "Import", 4 | "spdx_standard": true, 5 | "osi_approved": true 6 | } -------------------------------------------------------------------------------- /testdata/importer/license_patterns/TESTIMP/license_text.txt: -------------------------------------------------------------------------------- 1 | This is a license pattern text file. -------------------------------------------------------------------------------- /testdata/importer/license_patterns/TESTIMP/optional_text.txt: -------------------------------------------------------------------------------- 1 | optional -------------------------------------------------------------------------------- /testdata/prechecks/no_prechecks/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "customPath": "resources/custom/default", 3 | "spdx": "none" 4 | } 5 | 6 | -------------------------------------------------------------------------------- /testdata/prechecks/no_prechecks/resources/custom/default/license_patterns/NoPreCheckTest/license_template.txt: -------------------------------------------------------------------------------- 1 | noprechecktext -------------------------------------------------------------------------------- /testdata/prechecks/static_prechecks/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "customPath": "resources/custom/default", 3 | "spdx": "none" 4 | } 5 | 6 | -------------------------------------------------------------------------------- /testdata/prechecks/static_prechecks/resources/custom/default/license_patterns/Template/license_template.txt: -------------------------------------------------------------------------------- 1 | template 2 | -------------------------------------------------------------------------------- /testdata/prechecks/static_prechecks/resources/custom/default/license_patterns/Template/prechecks_license_template.json: -------------------------------------------------------------------------------- 1 | { 2 | "LicensePreChecks": [], 3 | "StaticBlocks": [ 4 | "this matches template", 5 | "and", 6 | "it also passes the static body checks" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /testdata/resources/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "customPath": "custom/default" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /testdata/resources/custom/customTest2/license_patterns/Test2/license_info.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test 2.0", 3 | "family": "T2-Family", 4 | "spdx_standard": false, 5 | "osi_approved": false 6 | } 7 | -------------------------------------------------------------------------------- /testdata/resources/custom/customTest2/license_patterns/Test2/license_test.txt: -------------------------------------------------------------------------------- 1 | test2 -------------------------------------------------------------------------------- /testdata/resources/custom/default/license_patterns/0BSD/associated_BSD-header.txt: -------------------------------------------------------------------------------- 1 | <><><> <> 2 | -------------------------------------------------------------------------------- /testdata/resources/custom/default/license_patterns/0BSD/license_info.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "BSD Zero Clause License", 3 | "family": "BSD", 4 | "spdx_standard": true, 5 | "osi_approved": true, 6 | "aliases":[ 7 | "Free Public License 1.0.0" 8 | ], 9 | "alias_prechecks": "BSD_weak", 10 | "urls":["https://spdx.org/licenses/0BSD.html", "https://opensource.org/licenses/FPL-1.0.0"] 11 | } 12 | -------------------------------------------------------------------------------- /testdata/resources/custom/default/license_patterns/Test1/license_info.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test 1.0", 3 | "family": "T1-Family", 4 | "spdx_standard": false, 5 | "osi_approved": false 6 | } 7 | -------------------------------------------------------------------------------- /testdata/resources/custom/default/license_patterns/Test1/license_test1.txt: -------------------------------------------------------------------------------- 1 | test1 -------------------------------------------------------------------------------- /testdata/resources/spdx/0.1234/json/exceptions.json: -------------------------------------------------------------------------------- 1 | { 2 | "licenseListVersion": "0.1234", 3 | "exceptions": [] 4 | } -------------------------------------------------------------------------------- /testdata/test-resources/custom/default/acceptable_patterns/Apache_project.regex: -------------------------------------------------------------------------------- 1 | Apache\s*(Software)?\s*[^Ll][^iI][^cC][^eE][^nN][^sS][^eE][^.\n\r]* -------------------------------------------------------------------------------- /testdata/test-resources/custom/default/license_patterns/Apache-2.0/license_info.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Apache License 2.0", 3 | "family": "Apache", 4 | "spdx_standard": true, 5 | "osi_approved": true, 6 | "urls": "http://www.apache.org/licenses/LICENSE-2.0", 7 | "aliases": ["Apache License, Version 2.0", "Apache License v. 2.0", "Apache License Version 2.0", "Apache Software License v2.0"], 8 | "alias_prechecks": "apache" 9 | } 10 | -------------------------------------------------------------------------------- /testdata/validator/Beerware-email2.template.txt: -------------------------------------------------------------------------------- 1 | "THE BEER-WARE LICENSE" (Revision 42): 2 | 3 | wrote this file. As long as you retain this notice you can do whatever you want with this stuff. If we meet some day, and you think this stuff is worth it, you can buy me a beer in return Poul-Henning Kamp 4 | 5 | -------------------------------------------------------------------------------- /testdata/validator/Beerware-email2.txt: -------------------------------------------------------------------------------- 1 | "THE BEER-WARE LICENSE" (Revision 42): wrote this file. As long as you retain this notice you can do whatever you want with this stuff. If we meet some day, and you think this stuff is worth it, you can buy me a beer in return Poul-Henning Kamp 2 | -------------------------------------------------------------------------------- /testdata/validator/Beerware-email3.template.txt: -------------------------------------------------------------------------------- 1 | "THE BEER-WARE LICENSE" (Revision 42): 2 | 3 | wrote this file. As long as you retain this notice you can do whatever you want with this stuff. If we meet some day, and you think this stuff is worth it, you can buy me a beer in return Poul-Henning Kamp 4 | 5 | -------------------------------------------------------------------------------- /testdata/validator/Beerware-email3.txt: -------------------------------------------------------------------------------- 1 | "THE BEER-WARE LICENSE" (Revision 42): wrote this file. As long as you retain this notice you can do whatever you want with this stuff. If we meet some day, and you think this stuff is worth it, you can buy me a beer in return Poul-Henning Kamp 2 | -------------------------------------------------------------------------------- /testdata/validator/Beerware.template.txt: -------------------------------------------------------------------------------- 1 | "THE BEER-WARE LICENSE" (Revision 42): 2 | 3 | wrote this file. As long as you retain this notice you can do whatever you want with this stuff. If we meet some day, and you think this stuff is worth it, you can buy me a beer in return Poul-Henning Kamp 4 | 5 | -------------------------------------------------------------------------------- /testdata/validator/Beerware.txt: -------------------------------------------------------------------------------- 1 | "THE BEER-WARE LICENSE" (Revision 42): wrote this file. As long as you retain this notice you can do whatever you want with this stuff. If we meet some day, and you think this stuff is worth it, you can buy me a beer in return Poul-Henning Kamp 2 | --------------------------------------------------------------------------------