├── .circleci └── config.yml ├── .dockerignore ├── .gitignore ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.md ├── data └── test │ ├── data │ ├── subdir │ │ ├── subdir2 │ │ │ ├── test3.py │ │ │ ├── test4.bogus │ │ │ └── test5.py │ │ └── test2.py │ ├── test0.py │ └── test1.py │ ├── encodings │ ├── VariableInfo.uni │ ├── _ude_euc-tw1.txt │ ├── test-utf-8 │ └── test-windows-1252 │ ├── license │ ├── custom │ │ └── custom_license.txt │ ├── some_file.bogus │ └── test_license.txt │ └── near_tie │ ├── data │ └── source │ └── license │ ├── license1.txt │ └── license2.txt ├── license_identifier ├── .coveragerc ├── __init__.py ├── cli.py ├── data │ ├── custom_license.yml │ └── license_dir │ │ ├── 0BSD.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-1.0.txt │ │ ├── AGPL-3.0-only.txt │ │ ├── AGPL-3.0-or-later.txt │ │ ├── AGPL-3.0.txt │ │ ├── AMDPLPA.txt │ │ ├── AML.txt │ │ ├── AMPAS.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 │ │ ├── Abstyles.txt │ │ ├── Adobe-2006.txt │ │ ├── Adobe-Glyph.txt │ │ ├── Afmparse.txt │ │ ├── Aladdin.txt │ │ ├── Apache-1.0.txt │ │ ├── Apache-1.1.txt │ │ ├── Apache-2.0.txt │ │ ├── Artistic-1.0-Perl.txt │ │ ├── Artistic-1.0-cl8.txt │ │ ├── Artistic-1.0.txt │ │ ├── Artistic-2.0.txt │ │ ├── BSD-1-Clause.txt │ │ ├── BSD-2-Clause-FreeBSD.txt │ │ ├── BSD-2-Clause-NetBSD.txt │ │ ├── BSD-2-Clause-Patent.txt │ │ ├── BSD-2-Clause.txt │ │ ├── BSD-3-Clause-Attribution.txt │ │ ├── BSD-3-Clause-Clear.txt │ │ ├── BSD-3-Clause-LBNL.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.txt │ │ ├── BSD-4-Clause-UC.txt │ │ ├── BSD-4-Clause.txt │ │ ├── BSD-Protection.txt │ │ ├── BSD-Source-Code.txt │ │ ├── BSL-1.0.txt │ │ ├── Bahyph.txt │ │ ├── Barr.txt │ │ ├── Beerware.txt │ │ ├── BitTorrent-1.0.txt │ │ ├── BitTorrent-1.1.txt │ │ ├── Borceux.txt │ │ ├── CATOSL-1.1.txt │ │ ├── CC-BY-1.0.txt │ │ ├── CC-BY-2.0.txt │ │ ├── CC-BY-2.5.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.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.txt │ │ ├── CC-BY-NC-ND-4.0.txt │ │ ├── CC-BY-NC-SA-1.0.txt │ │ ├── CC-BY-NC-SA-2.0.txt │ │ ├── CC-BY-NC-SA-2.5.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.txt │ │ ├── CC-BY-ND-4.0.txt │ │ ├── CC-BY-SA-1.0.txt │ │ ├── CC-BY-SA-2.0.txt │ │ ├── CC-BY-SA-2.5.txt │ │ ├── CC-BY-SA-3.0.txt │ │ ├── CC-BY-SA-4.0.txt │ │ ├── CC0-1.0.txt │ │ ├── CDDL-1.0.txt │ │ ├── CDDL-1.1.txt │ │ ├── CDLA-Permissive-1.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 │ │ ├── CNRI-Jython.txt │ │ ├── CNRI-Python-GPL-Compatible.txt │ │ ├── CNRI-Python.txt │ │ ├── CPAL-1.0.txt │ │ ├── CPL-1.0.txt │ │ ├── CPOL-1.02.txt │ │ ├── CUA-OPL-1.0.txt │ │ ├── Caldera.txt │ │ ├── ClArtistic.txt │ │ ├── Condor-1.1.txt │ │ ├── Crossword.txt │ │ ├── CrystalStacker.txt │ │ ├── Cube.txt │ │ ├── D-FSL-1.0.txt │ │ ├── DOC.txt │ │ ├── DSDP.txt │ │ ├── Dotseqn.txt │ │ ├── ECL-1.0.txt │ │ ├── ECL-2.0.txt │ │ ├── EFL-1.0.txt │ │ ├── EFL-2.0.txt │ │ ├── EPL-1.0.txt │ │ ├── EPL-2.0.txt │ │ ├── EUDatagrid.txt │ │ ├── EUPL-1.0.txt │ │ ├── EUPL-1.1.txt │ │ ├── EUPL-1.2.txt │ │ ├── Entessa.txt │ │ ├── ErlPL-1.1.txt │ │ ├── Eurosym.txt │ │ ├── FSFAP.txt │ │ ├── FSFUL.txt │ │ ├── FSFULLR.txt │ │ ├── FTL.txt │ │ ├── Fair.txt │ │ ├── Frameworx-1.0.txt │ │ ├── FreeImage.txt │ │ ├── GFDL-1.1-only.txt │ │ ├── GFDL-1.1-or-later.txt │ │ ├── GFDL-1.1.txt │ │ ├── GFDL-1.2-only.txt │ │ ├── GFDL-1.2-or-later.txt │ │ ├── GFDL-1.2.txt │ │ ├── GFDL-1.3-only.txt │ │ ├── GFDL-1.3-or-later.txt │ │ ├── GFDL-1.3.txt │ │ ├── GL2PS.txt │ │ ├── GPL-1.0+.txt │ │ ├── GPL-1.0-only.txt │ │ ├── GPL-1.0-or-later.txt │ │ ├── GPL-1.0.txt │ │ ├── GPL-2.0+.txt │ │ ├── GPL-2.0-only.txt │ │ ├── GPL-2.0-or-later.txt │ │ ├── GPL-2.0-with-GCC-exception.txt │ │ ├── GPL-2.0-with-autoconf-exception.txt │ │ ├── GPL-2.0-with-bison-exception.txt │ │ ├── GPL-2.0-with-classpath-exception.txt │ │ ├── GPL-2.0-with-font-exception.txt │ │ ├── GPL-2.0.txt │ │ ├── GPL-3.0+.txt │ │ ├── GPL-3.0-only.txt │ │ ├── GPL-3.0-or-later.txt │ │ ├── GPL-3.0-with-GCC-exception.txt │ │ ├── GPL-3.0-with-autoconf-exception.txt │ │ ├── GPL-3.0.txt │ │ ├── Giftware.txt │ │ ├── Glide.txt │ │ ├── Glulxe.txt │ │ ├── HPND.txt │ │ ├── HaskellReport.txt │ │ ├── IBM-pibs.txt │ │ ├── ICU.txt │ │ ├── IJG.txt │ │ ├── IPA.txt │ │ ├── IPL-1.0.txt │ │ ├── ISC.txt │ │ ├── ImageMagick.txt │ │ ├── Imlib2.txt │ │ ├── Info-ZIP.txt │ │ ├── Intel-ACPI.txt │ │ ├── Intel.txt │ │ ├── Interbase-1.0.txt │ │ ├── JSON.txt │ │ ├── JasPer-2.0.txt │ │ ├── LAL-1.2.txt │ │ ├── LAL-1.3.txt │ │ ├── LGPL-2.0+.txt │ │ ├── LGPL-2.0-only.txt │ │ ├── LGPL-2.0-or-later.txt │ │ ├── LGPL-2.0.txt │ │ ├── LGPL-2.1+.txt │ │ ├── LGPL-2.1-only.txt │ │ ├── LGPL-2.1-or-later.txt │ │ ├── LGPL-2.1.txt │ │ ├── LGPL-3.0+.txt │ │ ├── LGPL-3.0-only.txt │ │ ├── LGPL-3.0-or-later.txt │ │ ├── LGPL-3.0.txt │ │ ├── LGPLLR.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 │ │ ├── Latex2e.txt │ │ ├── Leptonica.txt │ │ ├── LiLiQ-P-1.1.txt │ │ ├── LiLiQ-R-1.1.txt │ │ ├── LiLiQ-Rplus-1.1.txt │ │ ├── Libpng.txt │ │ ├── Linux-OpenIB.txt │ │ ├── MIT-0.txt │ │ ├── MIT-CMU.txt │ │ ├── MIT-advertising.txt │ │ ├── MIT-enna.txt │ │ ├── MIT-feh.txt │ │ ├── MIT.txt │ │ ├── MITNFA.txt │ │ ├── MPL-1.0.txt │ │ ├── MPL-1.1.txt │ │ ├── MPL-2.0-no-copyleft-exception.txt │ │ ├── MPL-2.0.txt │ │ ├── MS-PL.txt │ │ ├── MS-RL.txt │ │ ├── MTLL.txt │ │ ├── MakeIndex.txt │ │ ├── MirOS.txt │ │ ├── Motosoto.txt │ │ ├── Multics.txt │ │ ├── Mup.txt │ │ ├── NASA-1.3.txt │ │ ├── NBPL-1.0.txt │ │ ├── NCSA.txt │ │ ├── NGPL.txt │ │ ├── NLOD-1.0.txt │ │ ├── NLPL.txt │ │ ├── NOSL.txt │ │ ├── NPL-1.0.txt │ │ ├── NPL-1.1.txt │ │ ├── NPOSL-3.0.txt │ │ ├── NRL.txt │ │ ├── NTP.txt │ │ ├── Naumen.txt │ │ ├── Net-SNMP.txt │ │ ├── NetCDF.txt │ │ ├── Newsletr.txt │ │ ├── Nokia.txt │ │ ├── Noweb.txt │ │ ├── Nunit.txt │ │ ├── OCCT-PL.txt │ │ ├── OCLC-2.0.txt │ │ ├── ODC-By-1.0.txt │ │ ├── ODbL-1.0.txt │ │ ├── OFL-1.0.txt │ │ ├── OFL-1.1.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 │ │ ├── OML.txt │ │ ├── OPL-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 │ │ ├── OpenSSL.txt │ │ ├── PDDL-1.0.txt │ │ ├── PHP-3.0.txt │ │ ├── PHP-3.01.txt │ │ ├── Plexus.txt │ │ ├── PostgreSQL.txt │ │ ├── Python-2.0.txt │ │ ├── QPL-1.0.txt │ │ ├── Qhull.txt │ │ ├── RHeCos-1.1.txt │ │ ├── RPL-1.1.txt │ │ ├── RPL-1.5.txt │ │ ├── RPSL-1.0.txt │ │ ├── RSA-MD.txt │ │ ├── RSCPL.txt │ │ ├── Rdisc.txt │ │ ├── Ruby.txt │ │ ├── SAX-PD.txt │ │ ├── SCEA.txt │ │ ├── SGI-B-1.0.txt │ │ ├── SGI-B-1.1.txt │ │ ├── SGI-B-2.0.txt │ │ ├── SISSL-1.2.txt │ │ ├── SISSL.txt │ │ ├── SMLNJ.txt │ │ ├── SMPPL.txt │ │ ├── SNIA.txt │ │ ├── SPL-1.0.txt │ │ ├── SWL.txt │ │ ├── Saxpath.txt │ │ ├── Sendmail-8.23.txt │ │ ├── Sendmail.txt │ │ ├── SimPL-2.0.txt │ │ ├── Sleepycat.txt │ │ ├── Spencer-86.txt │ │ ├── Spencer-94.txt │ │ ├── Spencer-99.txt │ │ ├── StandardML-NJ.txt │ │ ├── SugarCRM-1.1.3.txt │ │ ├── TCL.txt │ │ ├── TCP-wrappers.txt │ │ ├── TMate.txt │ │ ├── TORQUE-1.1.txt │ │ ├── TOSL.txt │ │ ├── TU-Berlin-1.0.txt │ │ ├── TU-Berlin-2.0.txt │ │ ├── UPL-1.0.txt │ │ ├── Unicode-DFS-2015.txt │ │ ├── Unicode-DFS-2016.txt │ │ ├── Unicode-TOU.txt │ │ ├── Unlicense.txt │ │ ├── VOSTROM.txt │ │ ├── VSL-1.0.txt │ │ ├── Vim.txt │ │ ├── W3C-19980720.txt │ │ ├── W3C-20150513.txt │ │ ├── W3C.txt │ │ ├── WTFPL.txt │ │ ├── WXwindows.txt │ │ ├── Watcom-1.0.txt │ │ ├── Wsuipa.txt │ │ ├── X11.txt │ │ ├── XFree86-1.1.txt │ │ ├── XSkat.txt │ │ ├── Xerox.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 │ │ ├── Zend-2.0.txt │ │ ├── Zimbra-1.3.txt │ │ ├── Zimbra-1.4.txt │ │ ├── Zlib.txt │ │ ├── bzip2-1.0.5.txt │ │ ├── bzip2-1.0.6.txt │ │ ├── copyleft-next-0.3.0.txt │ │ ├── copyleft-next-0.3.1.txt │ │ ├── curl.txt │ │ ├── custom │ │ ├── Amazon-Software-ref.txt │ │ ├── Amazon-Software.txt │ │ └── README.md │ │ ├── diffmark.txt │ │ ├── dvipdfm.txt │ │ ├── eCos-2.0.txt │ │ ├── eGenix.txt │ │ ├── exceptions │ │ ├── 389-exception.txt │ │ ├── Autoconf-exception-2.0.txt │ │ ├── Autoconf-exception-3.0.txt │ │ ├── Bison-exception-2.2.txt │ │ ├── Bootloader-exception.txt │ │ ├── CLISP-exception-2.0.txt │ │ ├── Classpath-exception-2.0.txt │ │ ├── DigiRule-FOSS-exception.txt │ │ ├── FLTK-exception.txt │ │ ├── Fawkes-Runtime-exception.txt │ │ ├── Font-exception-2.0.txt │ │ ├── GCC-exception-2.0.txt │ │ ├── GCC-exception-3.1.txt │ │ ├── LLVM-exception.txt │ │ ├── LZMA-exception.txt │ │ ├── Libtool-exception.txt │ │ ├── Linux-syscall-note.txt │ │ ├── Nokia-Qt-exception-1.1.txt │ │ ├── OCCT-exception-1.0.txt │ │ ├── OCaml-LGPL-linking-exception.txt │ │ ├── OpenJDK-assembly-exception-1.0.txt │ │ ├── PS-or-PDF-font-exception-20170817.txt │ │ ├── Qt-GPL-exception-1.0.txt │ │ ├── Qt-LGPL-exception-1.1.txt │ │ ├── Qwt-exception-1.0.txt │ │ ├── WxWindows-exception-3.1.txt │ │ ├── eCos-exception-2.0.txt │ │ ├── freertos-exception-2.0.txt │ │ ├── gnu-javamail-exception.txt │ │ ├── i2p-gpl-java-exception.txt │ │ ├── mif-exception.txt │ │ ├── openvpn-openssl-exception.txt │ │ └── u-boot-exception-2.0.txt │ │ ├── gSOAP-1.3b.txt │ │ ├── gnuplot.txt │ │ ├── headers │ │ ├── AFL-1.1-header.txt │ │ ├── AFL-1.2-header.txt │ │ ├── AFL-2.0-header.txt │ │ ├── AFL-2.1-header.txt │ │ ├── AFL-3.0-header.txt │ │ ├── AGPL-3.0-header.txt │ │ ├── AGPL-3.0-only-header.txt │ │ ├── AGPL-3.0-or-later-header.txt │ │ ├── Apache-2.0-header.txt │ │ ├── BitTorrent-1.0-header.txt │ │ ├── BitTorrent-1.1-header.txt │ │ ├── CPAL-1.0-header.txt │ │ ├── CUA-OPL-1.0-header.txt │ │ ├── ECL-1.0-header.txt │ │ ├── ECL-2.0-header.txt │ │ ├── GFDL-1.1-header.txt │ │ ├── GFDL-1.1-only-header.txt │ │ ├── GFDL-1.1-or-later-header.txt │ │ ├── GFDL-1.2-header.txt │ │ ├── GFDL-1.2-only-header.txt │ │ ├── GFDL-1.2-or-later-header.txt │ │ ├── GFDL-1.3-header.txt │ │ ├── GFDL-1.3-only-header.txt │ │ ├── GFDL-1.3-or-later-header.txt │ │ ├── GPL-1.0+-header.txt │ │ ├── GPL-1.0-header.txt │ │ ├── GPL-1.0-only-header.txt │ │ ├── GPL-1.0-or-later-header.txt │ │ ├── GPL-2.0+-header.txt │ │ ├── GPL-2.0-header.txt │ │ ├── GPL-2.0-only-header.txt │ │ ├── GPL-2.0-or-later-header.txt │ │ ├── GPL-3.0+-header.txt │ │ ├── GPL-3.0-header.txt │ │ ├── GPL-3.0-only-header.txt │ │ ├── GPL-3.0-or-later-header.txt │ │ ├── Interbase-1.0-header.txt │ │ ├── LGPL-2.0+-header.txt │ │ ├── LGPL-2.0-header.txt │ │ ├── LGPL-2.0-only-header.txt │ │ ├── LGPL-2.0-or-later-header.txt │ │ ├── LGPL-2.1+-header.txt │ │ ├── LGPL-2.1-header.txt │ │ ├── LGPL-2.1-only-header.txt │ │ ├── LGPL-2.1-or-later-header.txt │ │ ├── LPPL-1.0-header.txt │ │ ├── LPPL-1.1-header.txt │ │ ├── LPPL-1.2-header.txt │ │ ├── LPPL-1.3a-header.txt │ │ ├── LPPL-1.3c-header.txt │ │ ├── MPL-1.0-header.txt │ │ ├── MPL-1.1-header.txt │ │ ├── OCLC-2.0-header.txt │ │ ├── OSL-1.0-header.txt │ │ ├── OSL-1.1-header.txt │ │ ├── OSL-2.0-header.txt │ │ ├── OSL-2.1-header.txt │ │ ├── OSL-3.0-header.txt │ │ ├── RPSL-1.0-header.txt │ │ ├── SCEA-header.txt │ │ ├── SGI-B-1.0-header.txt │ │ ├── SGI-B-1.1-header.txt │ │ ├── SISSL-1.2-header.txt │ │ ├── SISSL-header.txt │ │ ├── SPL-1.0-header.txt │ │ ├── W3C-20150513-header.txt │ │ └── W3C-header.txt │ │ ├── iMatix.txt │ │ ├── libtiff.txt │ │ ├── mpich2.txt │ │ ├── psfrag.txt │ │ ├── psutils.txt │ │ ├── xinetd.txt │ │ ├── xpp.txt │ │ └── zlib-acknowledgement.txt ├── license_identifier.py ├── license_identifier_test.py ├── licenses.py ├── location_identifier.py ├── location_identifier_test.py ├── location_result.py ├── match_summary.py ├── n_grams.py ├── n_grams_test.py ├── prep.py ├── prep_test.py ├── scores.py ├── scores_test.py ├── util.py └── util_test.py ├── requirements.txt ├── setup.py ├── test-requirements.txt ├── tox.ini └── update_licenses.py /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | jobs: 3 | build: 4 | docker: 5 | - image: themattrix/tox 6 | steps: 7 | - checkout 8 | - run: 9 | command: |- 10 | tox -e pypy3,py27,py36,py37 11 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .cache 2 | .coverage 3 | .git 4 | .tox 5 | *.pyc 6 | *.pickle 7 | *~ 8 | ENV 9 | coverage.xml 10 | license_identifier/.coverage 11 | license_identifier/.coverage.* 12 | 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | bin 3 | build 4 | eggs 5 | downloads 6 | parts 7 | develop-eggs 8 | *.egg-info 9 | *.pyc 10 | .installed.cfg 11 | *.swp 12 | local_variables.py 13 | old-eggs 14 | bower_components 15 | modules 16 | intermediate 17 | publish 18 | out 19 | svn 20 | build.properties 21 | .sass-cache 22 | .DS_Store 23 | .boilerplate* 24 | server.pid 25 | server.port 26 | .grunt-newer-cache 27 | node_modules 28 | .tmp 29 | .npm-cache 30 | frontend/bower/ 31 | log/ 32 | dist 33 | frontend/bower-assets 34 | run.wsgi 35 | frontend/views/generated 36 | frontend/css 37 | tags 38 | !data/license_dir/custom 39 | data/licenses-1.18 40 | data/scanner_evaluation_files-1.0.0 41 | license_n_gram_lib.pickle 42 | /test.pickle 43 | /ENV 44 | .coverage 45 | .coverage.* 46 | coverage.xml 47 | .tox/ 48 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## Contributing to LiD 2 | 3 | Hi there! 4 | We’re thrilled that you’d like to contribute to this project. 5 | Your help is essential for keeping this project great and for making it better. 6 | 7 | ## Branching Strategy 8 | 9 | In general, contributors should develop on branches based off of `master` and pull requests should be made against `master`. 10 | 11 | ## Submitting a pull request 12 | 13 | 1. Please read our [code of conduct](code-of-conduct.md) and [license](LICENSE.txt). 14 | 1. [Fork](https://github.com/codeauroraforum/lid/fork) and clone the repository. 15 | 1. Create a new branch based on `master`: `git checkout -b master`. 16 | 1. Make your changes, add tests, and make sure the tests still pass. 17 | 1. Push to your fork and [submit a pull request](https://github.com/codeauroraforum/lid/compare) from your branch to `master`. 18 | 1. Pat yourself on the back and wait for your pull request to be reviewed. 19 | 20 | Here are a few things you can do that will increase the likelihood of your pull request to be accepted: 21 | 22 | - Follow the existing style where possible. We try and adhere to [pep8](https://www.python.org/dev/peps/pep-0008/). 23 | - Write tests. 24 | - Keep your change as focused as possible. 25 | If you want to make multiple independent changes, please consider submitting them as separate pull requests. 26 | - Write a [good commit message](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html). 27 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:18.04 2 | 3 | MAINTAINER Craig Northway 4 | 5 | RUN apt-get update && apt-get install -y python python-pip python3.6 python3-distutils git && pip install -U setuptools==25.2.0 && pip install tox && pip install pyyaml && pip install chardet 6 | 7 | RUN apt-get update && apt-get install -y software-properties-common && add-apt-repository -y ppa:pypy/ppa && apt-get update && apt-get install -y pypy3 8 | 9 | COPY . /src 10 | 11 | CMD cd /src && tox -r 12 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | BSD 3-Clause License 2 | 3 | Copyright (c) 2017, The Linux Foundation. All rights reserved. 4 | 5 | Redistribution and use in source and binary forms, with or without 6 | modification, are permitted provided that the following conditions are 7 | met: 8 | * Redistributions of source code must retain the above copyright 9 | notice, this list of conditions and the following disclaimer. 10 | * Redistributions in binary form must reproduce the above 11 | copyright notice, this list of conditions and the following 12 | disclaimer in the documentation and/or other materials provided 13 | with the distribution. 14 | * Neither the name of the copyright holder nor the names of its 15 | contributors may be used to endorse or promote products derived 16 | from this software without specific prior written permission. 17 | 18 | THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED 19 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 20 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT 21 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS 22 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR 25 | BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 26 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 27 | OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN 28 | IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 | 30 | SPDX-License-Identifier: BSD-3-Clause 31 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include bin * 2 | recursive-include data/license_dir *.txt 3 | recursive-include license_identifier *.py 4 | include MANIFEST.in 5 | include requirements.txt 6 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: deps test install clean git-clean, all, pickle 2 | 3 | all: test 4 | 5 | update-licenses: deps update_licenses.py 6 | python update_licenses.py 7 | 8 | deps: requirements.txt 9 | pip install -r $< 10 | 11 | test: 12 | tox -r 13 | 14 | install: deps 15 | python setup.py install 16 | 17 | clean: 18 | cd license_identifier && rm -f *.pyc && rm -f licenses.py 19 | 20 | pickle: deps 21 | python -m license_identifier.cli -L license_identifier/data/license_dir/ -P license_identifier/data/license_n_gram_lib.pickle 22 | 23 | git-clean: 24 | git clean -Xdf 25 | -------------------------------------------------------------------------------- /data/test/data/subdir/subdir2/test3.py: -------------------------------------------------------------------------------- 1 | __author__ = 'phshin' 2 | zero 3 | 4 | -------------------------------------------------------------------------------- /data/test/data/subdir/subdir2/test4.bogus: -------------------------------------------------------------------------------- 1 | This is a file with an unrecognized extension 2 | a 3 | one two three four 4 | b 5 | c 6 | -------------------------------------------------------------------------------- /data/test/data/subdir/subdir2/test5.py: -------------------------------------------------------------------------------- 1 | some_code_here() 2 | # comment here 3 | # one 4 | more_code() 5 | # two three 6 | even_more_code() 7 | # four 8 | -------------------------------------------------------------------------------- /data/test/data/subdir/test2.py: -------------------------------------------------------------------------------- 1 | worthwhile 2 | test 3 | does not 4 | contain 5 | any matching 6 | license 7 | text -------------------------------------------------------------------------------- /data/test/data/test0.py: -------------------------------------------------------------------------------- 1 | p 2 | q 3 | r 4 | my custom license 5 | s 6 | t 7 | -------------------------------------------------------------------------------- /data/test/data/test1.py: -------------------------------------------------------------------------------- 1 | zero 2 | one two three four 3 | five 4 | six 5 | seven -------------------------------------------------------------------------------- /data/test/encodings/VariableInfo.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/76cd5d44f5e8787d3974732ae4108a0503483cdc/data/test/encodings/VariableInfo.uni -------------------------------------------------------------------------------- /data/test/encodings/_ude_euc-tw1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/76cd5d44f5e8787d3974732ae4108a0503483cdc/data/test/encodings/_ude_euc-tw1.txt -------------------------------------------------------------------------------- /data/test/encodings/test-utf-8: -------------------------------------------------------------------------------- 1 | こんにちは 2 | -------------------------------------------------------------------------------- /data/test/encodings/test-windows-1252: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/76cd5d44f5e8787d3974732ae4108a0503483cdc/data/test/encodings/test-windows-1252 -------------------------------------------------------------------------------- /data/test/license/custom/custom_license.txt: -------------------------------------------------------------------------------- 1 | my custom license 2 | -------------------------------------------------------------------------------- /data/test/license/some_file.bogus: -------------------------------------------------------------------------------- 1 | This is a file that should not be included in the license library. 2 | -------------------------------------------------------------------------------- /data/test/license/test_license.txt: -------------------------------------------------------------------------------- 1 | one two three four -------------------------------------------------------------------------------- /data/test/near_tie/data/source: -------------------------------------------------------------------------------- 1 | m n o p q 2 | g h i j k l m 3 | a b c d e 4 | -------------------------------------------------------------------------------- /data/test/near_tie/license/license1.txt: -------------------------------------------------------------------------------- 1 | a b c d e f 2 | g h i j k l 3 | m n o p q r 4 | -------------------------------------------------------------------------------- /data/test/near_tie/license/license2.txt: -------------------------------------------------------------------------------- 1 | m n o p q r 2 | g h i j k l 3 | a b c d e f 4 | -------------------------------------------------------------------------------- /license_identifier/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = 3 | *_test.py 4 | -------------------------------------------------------------------------------- /license_identifier/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2017, The Linux Foundation. All rights reserved. 2 | # 3 | # Redistribution and use in source and binary forms, with or without 4 | # modification, are permitted provided that the following conditions are 5 | # met: 6 | # * Redistributions of source code must retain the above copyright 7 | # notice, this list of conditions and the following disclaimer. 8 | # * Redistributions in binary form must reproduce the above 9 | # copyright notice, this list of conditions and the following 10 | # disclaimer in the documentation and/or other materials provided 11 | # with the distribution. 12 | # * Neither the name of The Linux Foundation nor the names of its 13 | # contributors may be used to endorse or promote products derived 14 | # from this software without specific prior written permission. 15 | # 16 | # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED 17 | # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 18 | # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT 19 | # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS 20 | # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 21 | # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 22 | # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR 23 | # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 24 | # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 25 | # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN 26 | # IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 | # 28 | # SPDX-License-Identifier: BSD-3-Clause 29 | 30 | __author__ = 'phshin' 31 | -------------------------------------------------------------------------------- /license_identifier/data/custom_license.yml: -------------------------------------------------------------------------------- 1 | Amazon-Software: 2 | submitter: Craig Northway 3 | date_submitted: Fri Feb 10 00:00:00 2016 4 | Amazon-Software-ref: 5 | submitter: Craig Northway 6 | date_submitted: Fri Feb 10 00:00:00 2016 7 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/0BSD.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 5 | 6 | 2006 by Rob Landley 7 | 8 | 9 | 10 | 11 | Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is 12 | hereby granted. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE 15 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE 16 | LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING 17 | FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS 18 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 19 | 20 | 21 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/ADSL.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | This software code is made available "AS IS" without warranties of any kind. You may copy, display, 4 | modify and redistribute the software code either by itself or as incorporated into your code; provided 5 | that > you do not remove any proprietary notices. Your use of this software code is at your own 6 | risk and you waive any claim against Amazon Digital Services, Inc. or its affiliates with respect to 7 | your use of this software code. (c) 2006 Amazon Digital Services, Inc. or its affiliates. 8 | 9 | 10 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/ANTLR-PD.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ANTLR 2 License 5 | 6 | 7 | 8 | We reserve no legal rights to the ANTLR--it is fully in the public domain. An individual or company may 9 | do whatever they wish with source code distributed with ANTLR or the code generated by ANTLR, 10 | including the incorporation of ANTLR, or its output, into commerical software. 11 | 12 | We encourage users to develop software with ANTLR. However, we do ask that credit is given to us for 13 | developing ANTLR. By "credit", we mean that if you use ANTLR or incorporate any source code into one 14 | of your programs (commercial product, research project, or otherwise) that you acknowledge this fact 15 | somewhere in the documentation, research report, etc... If you like ANTLR and have developed a nice 16 | tool with the output, please mention that you developed it using ANTLR. In addition, we ask that the 17 | headers remain intact in our source code. As long as these guidelines are kept, we expect to continue 18 | enhancing this system and expect to make other tools available as they are completed. 19 | 20 | 21 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/APAFML.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (c) 1985, 1987, 1989, 1990, 1991, 1992, 1993, 1997 Adobe Systems Incorporated. All Rights 5 | Reserved. 6 | 7 | 8 | 9 | This file and the 14 PostScript(R) AFM files it accompanies may be used, copied, and distributed for any 10 | purpose and without charge, with or without modification, provided that all copyright notices are 11 | retained; that the AFM files are not distributed without this file; that all modifications to this 12 | file or any of the AFM files are prominently noted in the modified file(s); and that this paragraph is 13 | not modified. Adobe Systems has no responsibility or obligation to support the use of the AFM 14 | files. 15 | 16 | 17 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Abstyles.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | This is APREAMBL.TEX, version 1.10e, written by Hans-Hermann Bode 5 | 6 | 7 | (HHBODE@DOSUNI1.BITNET), for the BibTeX `adaptable' family, version 1.10. 8 | 9 | 10 | See the file APREAMBL.DOC for a detailed documentation. 11 | 12 | 13 | 14 | 15 | This program is distributed WITHOUT ANY WARRANTY, express or implied. 16 | 17 | Copyright (C) 1991, 1992 Hans-Hermann Bode 18 | 19 | Permission is granted to make and distribute verbatim copies of this document provided that the copyright 20 | notice and this permission notice are preserved on all copies. 21 | 22 | Permission is granted to copy and distribute modified versions of this document under the conditions for 23 | verbatim copying, provided that the entire resulting derived work is distributed under the terms of a 24 | permission notice identical to this one. 25 | 26 | 27 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Afmparse.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | (C) 1988, 1989 by Adobe Systems Incorporated. All rights reserved. 5 | 6 | 7 | 8 | This file may be freely copied and redistributed as long as: 9 | 10 | 11 | 12 | 13 | 14 | 1) 15 | This entire notice continues to be included in the file, 16 | 17 | 18 | 19 | 2) 20 | If the file has been modified in any way, a notice of such modification is conspicuously indicated. 21 | 22 | 23 | PostScript, Display PostScript, and Adobe are registered trademarks of Adobe Systems Incorporated. 24 | 25 | THE INFORMATION BELOW IS FURNISHED AS IS, IS SUBJECT TO CHANGE WITHOUT NOTICE, AND SHOULD NOT BE 26 | CONSTRUED AS A COMMITMENT BY ADOBE SYSTEMS INCORPORATED. ADOBE SYSTEMS INCORPORATED ASSUMES NO 27 | RESPONSIBILITY OR LIABILITY FOR ANY ERRORS OR INACCURACIES, MAKES NO WARRANTY OF ANY KIND (EXPRESS, 28 | IMPLIED OR STATUTORY) WITH RESPECT TO THIS INFORMATION, AND EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES 29 | OF MERCHANTABILITY, FITNESS FOR PARTICULAR PURPOSES AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. 30 | 31 | 32 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSD-1-Clause.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Copyright (c) 6 | 7 | All rights reserved. 8 | 9 | 10 | 11 | 12 | Redistribution and use in source and binary 13 | forms, with or without modification, are permitted 14 | provided that the following conditions are met: 15 | 16 | 17 | 18 | 19 | 20 | 21 | 1. 22 | Redistributions of source code must retain the above copyright 23 | notice, this list of conditions and the following disclaimer. 24 | 25 | 26 | 27 | THIS SOFTWARE IS PROVIDED BY 28 | Berkeley Software Design, Inc. 29 | "AS IS" AND ANY 30 | EXPRESS 31 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 32 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 33 | ARE DISCLAIMED. IN NO EVENT SHALL 34 | Berkeley Software Design, Inc. 35 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, 36 | OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT 37 | OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 38 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 39 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 40 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 41 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSD-2-Clause-NetBSD.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (c) 2008 The NetBSD Foundation, Inc. All rights reserved. 5 | 6 | 7 | 8 | This code is derived from software contributed to The NetBSD Foundation by 9 | 10 | 11 | 12 | 13 | Redistribution and use in source and binary forms, with or without modification, are permitted provided 14 | that the following conditions are met: 15 | 16 | 17 | 18 | 19 | 20 | 1. 21 | Redistributions of source code must retain the above copyright notice, this list of conditions 22 | and the following disclaimer. 23 | 24 | 25 | 26 | 2. 27 | Redistributions in binary form must reproduce the above copyright notice, this list of conditions 28 | and the following disclaimer in the documentation and/or other materials provided with the 29 | distribution. 30 | 31 | 32 | THIS SOFTWARE IS PROVIDED BY 33 | 34 | THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS ``AS IS'' 35 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 36 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL 37 | 38 | THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY 39 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED 40 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 41 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 42 | TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 43 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSD-2-Clause.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (c) 5 | 6 | . All rights reserved. 7 | 8 | 9 | 10 | 11 | Redistribution and use in source and binary forms, with or without modification, are permitted provided 12 | that the following conditions are met: 13 | 14 | 15 | 16 | 17 | 18 | 1. 19 | Redistributions of source code must retain the above copyright notice, this list of conditions 20 | and the following disclaimer. 21 | 22 | 23 | 24 | 2. 25 | Redistributions in binary form must reproduce the above copyright notice, this list of conditions 26 | and the following disclaimer in the documentation and/or other materials provided with the 27 | distribution. 28 | 29 | 30 | THIS SOFTWARE IS PROVIDED BY 31 | 32 | THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 33 | 34 | EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY 35 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL 36 | 37 | THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR 38 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 39 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 40 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 41 | TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 42 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSD-Source-Code.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (c) 5 | 6 | 2011, Deusty, LLC 7 | 8 | 9 | All rights reserved. 10 | 11 | 12 | 13 | 14 | Redistribution and use of this software in source and binary 15 | forms, with or without modification, are permitted provided 16 | that the following conditions are met: 17 | 18 | 19 | 20 | 21 | 22 | * 23 | Redistributions of source code must retain the above 24 | copyright notice, this list of conditions and the 25 | following disclaimer. 26 | 27 | 28 | 29 | * 30 | Neither the name of 31 | 32 | 33 | Deusty nor the names of its contributors may be 34 | used to endorse or promote products derived from this 35 | software without specific prior written permission of 36 | Deusty, LLC. 37 | 38 | 39 | 40 | THIS SOFTWARE IS PROVIDED BY 41 | 42 | THE COPYRIGHT HOLDERS 43 | AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED 44 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 45 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 46 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL 47 | 48 | THE COPYRIGHT 49 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 50 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 51 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 52 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 53 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 54 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 55 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 56 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH 57 | DAMAGE. 58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSL-1.0.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Boost Software License - Version 1.0 - August 17th, 2003 5 | 6 | 7 | 8 | Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the 9 | software and accompanying documentation covered by this license (the "Software") to use, reproduce, 10 | display, distribute, execute, and transmit the Software, and to prepare derivative works of the 11 | Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the 12 | following: 13 | 14 | The copyright notices in the Software and this entire statement, including the above license grant, this 15 | restriction and the following disclaimer, must be included in all copies of the Software, in whole or 16 | in part, and all derivative works of the Software, unless such copies or derivative works are solely 17 | in the form of machine-executable object code generated by a source language processor. 18 | 19 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT 20 | LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND 21 | NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE 22 | LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT 23 | OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 24 | 25 | 26 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Bahyph.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | COPYRIGHT NOTICE 5 | 6 | 7 | 8 | These patterns and the generating sh script are Copyright (c) GMV 1991 9 | 10 | These patterns were developed for internal GMV use and are made public in the hope that they will benefit 11 | others. Also, spreading these patterns throughout the Spanish-language TeX community is expected to 12 | provide back-benefits to GMV in that it can help keeping GMV in the mainstream of spanish users. 13 | 14 | However, this is given for free and WITHOUT ANY WARRANTY. Under no circumstances can Julio Sanchez, GMV, 15 | Jos'e A. Ma~nas or any agents or representatives thereof be held responsible for any errors in this 16 | software nor for any damages derived from its use, even in case any of the above has been notified of 17 | the possibility of such damages. If any such situation arises, you responsible for repair. Use of this 18 | software is an explicit acceptance of these conditions. 19 | 20 | You can use this software for any purpose. You cannot delete this copyright notice. If you change this 21 | software, you must include comments explaining who, when and why. You are kindly requested to send any 22 | changes to tex@gmv.es. If you change the generating script, you must include code in it such that any 23 | output is clearly labeled as generated by a modified script. Despite the lack of warranty, we would 24 | like to hear about any problem you find. Please report problems to tex@gmv.es. 25 | 26 | 27 | 28 | END OF COPYRIGHT NOTICE 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Barr.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | This is a package of commutative diagram macros built on top of Xy-pic by Michael Barr (email: 4 | barr@barrs.org). Its use is unrestricted. It may be freely distributed, unchanged, for non-commercial 5 | or commercial use. If changed, it must be renamed. Inclusion in a commercial software package is also 6 | permitted, but I would appreciate receiving a free copy for my personal examination and use. There are 7 | no guarantees that this package is good for anything. I have tested it with LaTeX 2e, LaTeX 2.09 and 8 | Plain TeX. Although I know of no reason it will not work with AMSTeX, I have not tested it. 9 | 10 | 11 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Beerware.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | "THE BEER-WARE LICENSE" (Revision 42): 4 | 5 | 6 | wrote this file. As long as you retain 7 | this notice you can do whatever you want with this stuff. If we meet some day, and you think this 8 | stuff is worth it, you can buy me a beer in return Poul-Henning Kamp 9 | 10 | 11 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Borceux.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright 1993 Francis Borceux 5 | 6 | 7 | 8 | You may freely use, modify, and/or distribute each of the files in this package without limitation. The 9 | package consists of the following files: 10 | 11 | 12 | README 13 | 14 | 15 | compatibility/OldDiagram 16 | 17 | 18 | compatibility/OldMaxiDiagram 19 | 20 | 21 | compatibility/OldMicroDiagram 22 | 23 | 24 | compatibility/OldMiniDiagram 25 | 26 | 27 | compatibility/OldMultipleArrows 28 | 29 | 30 | diagram/Diagram 31 | 32 | 33 | diagram/MaxiDiagram 34 | 35 | 36 | diagram/MicroDiagram 37 | 38 | 39 | diagram/MiniDiagram 40 | 41 | 42 | diagram/MultipleArrows 43 | 44 | 45 | user-guides/Diagram_Mode_d_Emploi 46 | 47 | 48 | user-guides/Diagram_Read_Me 49 | 50 | 51 | Of course no support is guaranteed, but the author will attempt to assist with problems. Current email address: 52 | 53 | 54 | francis dot borceux at uclouvain dot be. 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Crossword.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 1995-2009 Gerd Neugebauer 5 | 6 | 7 | 8 | cwpuzzle.dtx is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. No author or 9 | distributor accepts responsibility to anyone for the consequences of using it or for whether it serves 10 | any particular purpose or works at all, unless he says so in writing. 11 | 12 | 13 | . 14 | 15 | 16 | Everyone is granted permission to copy, modify and redistribute cwpuzzle.dtx, provided this 17 | copyright notice is preserved and any modifications are indicated. 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CrystalStacker.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Crystal Stacker is freeware. This means you can pass copies around freely provided you include this 4 | document in it's original form in your distribution. Please see the "Contacting Us" section of this 5 | document if you need to contact us for any reason. 6 | 7 | Disclaimer 8 | 9 | NewCreature Design makes no guarantees regarding the Crystal Stacker software. We are not responsible for 10 | damages caused by it, though the software is not known to cause any problems. If you have trouble with 11 | the software, see the "Contacting Us" section of this document. 12 | 13 | The source code is provided as-is and you may do with it whatsoever you please provided that you include 14 | this file in its unmodified form with any new distribution. NewCreature Design makes no gaurantees 15 | regarding the usability of the source but are willing to help with any problems you might run into. 16 | Please see the "Contacting Us" section of this document if you need to get in touch with us about any 17 | issues you have regarding the source. 18 | 19 | 20 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Cube.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Cube game engine source code, 20 dec 2003 release. 5 | 6 | 7 | 8 | Copyright (C) 2001-2003 Wouter van Oortmerssen. 9 | 10 | 11 | 12 | This software is provided 'as-is', without any express or implied warranty. In no event will 13 | the authors be held liable for any damages arising from the use of this software. 14 | 15 | Permission is granted to anyone to use this software for any purpose, including commercial applications, 16 | and to alter it and redistribute it freely, subject to the following restrictions: 17 | 18 | 19 | 20 | 21 | 22 | 1. 23 | The origin of this software must not be misrepresented; you must not claim that you wrote the 24 | original software. If you use this software in a product, an acknowledgment in the product 25 | documentation would be appreciated but is not required. 26 | 27 | 28 | 29 | 2. 30 | Altered source versions must be plainly marked as such, and must not be misrepresented as 31 | being the original software. 32 | 33 | 34 | 35 | 3. 36 | This notice may not be removed or altered from any source distribution. 37 | 38 | 39 | additional clause specific to Cube: 40 | 41 | 42 | 43 | 44 | 45 | 4. 46 | Source versions may not be "relicensed" under a different license without my 47 | explicitly written permission. 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Dotseqn.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 1995 by Donald Arseneau 5 | 6 | 7 | 8 | This file may be freely transmitted and reproduced, but it may not be changed unless the name is changed 9 | also (except that you may freely change the paper-size option for \documentclass). 10 | 11 | This notice must be left intact. 12 | 13 | 14 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/EFL-1.0.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Eiffel Forum License, version 1 5 | 6 | 7 | 8 | Permission is hereby granted to use, copy, modify and/or distribute this package, provided that: 9 | 10 | 11 | 12 | 13 | 14 | - 15 | copyright notices are retained unchanged 16 | 17 | 18 | 19 | - 20 | any distribution of this package, whether modified or not, includes this file 21 | 22 | 23 | Permission is hereby also granted to distribute binary programs which depend on this package, 24 | provided that: 25 | 26 | 27 | 28 | 29 | 30 | - 31 | if the binary program depends on a modified version of this package, you must publicly 32 | release the modified version of this package 33 | 34 | 35 | THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT WARRANTY. ANY EXPRESS OR IMPLIED WARRANTIES, 36 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 37 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE TO ANY PARTY FOR ANY DIRECT, INDIRECT, 38 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THIS 39 | PACKAGE. 40 | 41 | 42 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/EFL-2.0.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Eiffel Forum License, version 2 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 1. 13 | Permission is hereby granted to use, copy, modify and/or distribute this package, provided that: 14 | 15 | 16 | 17 | 18 | - 19 | copyright notices are retained unchanged, 20 | 21 | 22 | 23 | - 24 | any distribution of this package, whether modified or not, includes this license text. 25 | 26 | 27 | 28 | 29 | 30 | 2. 31 | Permission is hereby also granted to distribute binary programs which depend on this package. If 32 | the binary program depends on a modified version of this package, you are encouraged to 33 | publicly release the modified version of this package. 34 | 35 | 36 | THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT WARRANTY. ANY EXPRESS OR IMPLIED WARRANTIES, 37 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 38 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE TO ANY PARTY FOR ANY DIRECT, INDIRECT, 39 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THIS 40 | PACKAGE. 41 | 42 | 43 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Eurosym.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (c) 1999-2002 Henrik Theiling 5 | 6 | 7 | 8 | 9 | 10 | Licence Version 2 11 | 12 | 13 | 14 | 15 | 16 | This software is provided 'as-is', without warranty of any kind, express or implied. In no 17 | event will the authors or copyright holders be held liable for any damages arising from the use of 18 | this software. 19 | 20 | Permission is granted to anyone to use this software for any purpose, including commercial applications, 21 | and to alter it and redistribute it freely, subject to the following restrictions: 22 | 23 | 24 | 25 | 26 | 27 | 1. 28 | The origin of this software must not be misrepresented; you must not claim that you wrote the 29 | original software. If you use this software in a product, an acknowledgment in the product 30 | documentation would be appreciated. 31 | 32 | 33 | 34 | 2. 35 | Altered source versions must be plainly marked as such, and must not be misrepresented as 36 | being the original software. 37 | 38 | 39 | 40 | 3. 41 | You must not use any of the names of the authors or copyright holders of the original 42 | software for advertising or publicity pertaining to distribution without specific, written 43 | prior permission. 44 | 45 | 46 | 47 | 4. 48 | If you change this software and redistribute parts or all of it in any form, you must make 49 | the source code of the altered version of this software available. 50 | 51 | 52 | 53 | 5. 54 | This notice may not be removed or altered from any source distribution. 55 | 56 | 57 | This licence is governed by the Laws of Germany. Disputes shall be settled by Saarbruecken City Court. 58 | 59 | 60 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/FSFAP.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Copying and distribution of this file, with or without 4 | modification, are permitted in any medium without royalty 5 | provided the copyright notice and this notice are preserved. 6 | This file is offered as-is, without any warranty. 7 | 8 | 9 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/FSFUL.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. 5 | 6 | 7 | 8 | This configure script is free software; the Free Software Foundation gives unlimited permission to copy, 9 | distribute and modify it. 10 | 11 | 12 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/FSFULLR.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright 1996-2006 Free Software Foundation, Inc. 5 | 6 | 7 | 8 | This file is free software; the Free Software Foundation gives unlimited permission to copy and/or 9 | distribute it, with or without modifications, as long as this notice is preserved. 10 | 11 | 12 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Fair.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Fair License 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Usage of the works is permitted provided that this instrument is retained with the works, so that any 13 | entity that uses the works is notified of this instrument. 14 | 15 | DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY. 16 | 17 | 18 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GL2PS.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GL2PS LICENSE Version 2, November 2003 5 | 6 | 7 | 8 | Copyright (C) 2003, Christophe Geuzaine 9 | 10 | 11 | 12 | Permission to use, copy, and distribute this software and its documentation for any purpose with or 13 | without fee is hereby granted, provided that the copyright notice appear in all copies and that both 14 | that copyright notice and this permission notice appear in supporting documentation. 15 | 16 | Permission to modify and distribute modified versions of this software is granted, provided that: 17 | 18 | 19 | 20 | 21 | 22 | 1) 23 | the modifications are licensed under the same terms as this software; 24 | 25 | 26 | 27 | 2) 28 | you make available the source code of any modifications that you distribute, either on the same 29 | media as you distribute any executable or other form of this software, or via a mechanism 30 | generally accepted in the software development community for the electronic transfer of 31 | data. 32 | 33 | 34 | This software is provided "as is" without express or implied warranty. 35 | 36 | 37 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-2.0-with-GCC-exception.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | insert GPL v2 license text here 4 | 5 | GCC Linking Exception 6 | 7 | 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. 8 | 9 | 10 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-2.0-with-autoconf-exception.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | insert GPL v2 license text here 4 | 5 | Autoconf Exception 6 | 7 | As a special exception, the Free Software Foundation gives unlimited permission to copy, distribute and modify the configure scripts that are the output of Autoconf. You need not follow the terms of the GNU General Public License when using or distributing such scripts, even though portions of the text of Autoconf appear in them. The GNU General Public License (GPL) does govern all other use of the material that constitutes the Autoconf program. 8 | 9 | Certain portions of the Autoconf source text are designed to be copied (in certain cases, depending on the input) into the output of Autoconf. We call these the "data" portions. The rest of the Autoconf source text consists of comments plus executable code that decides which of the data portions to output in any given case. We call these comments and executable code the "non-data" portions. Autoconf never copies any of the non-data portions into its output. 10 | 11 | This special exception to the GPL applies to versions of Autoconf released by the Free Software Foundation. When you make and distribute a modified version of Autoconf, you may extend this special exception to the GPL to apply to your modified version as well, *unless* your modified version has the potential to copy into its output some of the text that was the non-data portion of the version that you started with. (In other words, unless your change moves or copies text from the non-data portions to the data portions.) If your modification has such potential, you must delete any notice of this special exception to the GPL from your modified version. 12 | 13 | 14 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-2.0-with-bison-exception.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Bison Exception 4 | 5 | As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. 6 | 7 | This special exception was added by the Free Software Foundation in version 2.2 of Bison. 8 | 9 | 10 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-2.0-with-classpath-exception.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | insert GPL v2 license text here 4 | 5 | Class Path Exception 6 | 7 | Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. 8 | 9 | As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. 10 | 11 | 12 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-2.0-with-font-exception.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | insert GPL v2 license text here 4 | 5 | Font Exception 6 | 7 | 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. 8 | 9 | 10 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Giftware.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Allegro 4 (the giftware license) 5 | 6 | 7 | 8 | Allegro is gift-ware. It was created by a number of people working in cooperation, and is given to you 9 | freely as a gift. You may use, modify, redistribute, and generally hack it about in any way you like, 10 | and you do not have to give us anything in return. 11 | 12 | However, if you like this product you are encouraged to thank us by making a return gift to the Allegro 13 | community. This could be by writing an add-on package, providing a useful bug report, making an 14 | improvement to the library, or perhaps just releasing the sources of your program so that other people 15 | can learn from them. If you redistribute parts of this code or make a game using it, it would be nice 16 | if you mentioned Allegro somewhere in the credits, but you are not required to do this. We trust you 17 | not to abuse our generosity. 18 | 19 | By Shawn Hargreaves, 18 October 1998. 20 | 21 | DISCLAIMER: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING 22 | BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND 23 | NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE 24 | LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT 25 | OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 26 | 27 | 28 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Glulxe.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The source code in this package is copyright 1999-2010 by Andrew Plotkin. 5 | 6 | 7 | 8 | You may copy and distribute it freely, by any means and under any conditions, as long as the code and 9 | documentation is not changed. You may also incorporate this code into your own program and distribute 10 | that, or modify this code and use and distribute the modified version, as long as you retain a notice 11 | in your program or documentation which mentions my name and the URL shown above. 12 | 13 | 14 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/HPND.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Historical Permission Notice and Disclaimer 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Permission to use, copy, modify and distribute this software and its documentation for any purpose and 13 | without fee is hereby granted, provided that the above copyright notice appear in all copies, 14 | and that both that 15 | the copyright notice 16 | and this permission notice appear in supporting documentation, and that the name of 17 | 18 | 19 | 20 | 21 | not be used in advertising or publicity pertaining to distribution of the software without specific, written 22 | prior permission. 23 | 24 | makes no representations 25 | about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. 26 | 27 | 28 | 29 | 30 | 31 | DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING 32 | ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 33 | . IN NO EVENT SHALL 34 | 35 | BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES 36 | OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, 37 | NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/HaskellReport.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Code derived from the document "Report on the Programming Language 4 | 5 | 6 | Haskell 2010", is distributed under the following license: 7 | 8 | 9 | 10 | Copyright (c) 2010 Simon Marlow 11 | 12 | 13 | The authors intend this Report to belong to the entire Haskell community, and so we grant permission to 14 | copy and distribute it for any purpose, provided that it is reproduced in its entirety, including this 15 | Notice. Modified versions of this Report may also be copied and distributed for any purpose, provided 16 | that the modified version is clearly presented as such, and that it does not claim to be a definition 17 | of the Haskell 2010 Language. 18 | 19 | 20 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/IBM-pibs.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | This source code has been made available to you by IBM on an AS-IS basis. Anyone receiving this source is 4 | licensed under IBM copyrights to use it in any way he or she deems fit, including copying it, 5 | modifying it, compiling it, and redistributing it either with or without modifications. No license 6 | under IBM patents or patent applications is to be implied by the copyright license. 7 | 8 | Any user of this software should understand that IBM cannot provide technical support for this software 9 | and will not be responsible for any consequences resulting from the use of this software. 10 | 11 | Any person who transfers this source code or any derivative work must include the IBM copyright notice, 12 | this paragraph, and the preceding two paragraphs in the transferred software. 13 | 14 | COPYRIGHT I B M CORPORATION 2002 15 | 16 | 17 | LICENSED MATERIAL - PROGRAM PROPERTY OF I B M 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/ICU.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ICU License - ICU 1.8.1 and later 5 | 6 | COPYRIGHT AND PERMISSION NOTICE 7 | 8 | 9 | 10 | Copyright (c) 1995-2014 International Business Machines Corporation and others 11 | 12 | 13 | All rights reserved. 14 | 15 | 16 | 17 | 18 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and 19 | associated documentation files (the "Software"), to deal in the Software without restriction, 20 | including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sell 21 | copies of the Software, and to permit persons to whom the Software is furnished to do so, provided 22 | that the above copyright notice(s) and this permission notice appear in all copies of the Software and 23 | that both the above copyright notice(s) and this permission notice appear in supporting 24 | documentation. 25 | 26 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT 27 | LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF 28 | THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE 29 | LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER 30 | RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 31 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 32 | 33 | Except as contained in this notice, the name of a copyright holder shall not be used in advertising or 34 | otherwise to promote the sale, use or other dealings in this Software without prior written 35 | authorization of the copyright holder. 36 | 37 | 38 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/ISC.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ISC License 6 | 7 | 8 | 9 | Copyright (c) 10 | 2004-2010 by Internet Systems Consortium, Inc. ("ISC") 11 | 12 | 13 | Copyright (c) 1995-2003 by Internet Software Consortium 14 | 15 | 16 | 17 | 18 | Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is 19 | hereby granted, provided that the above copyright notice and this permission notice appear in all 20 | copies. 21 | 22 | THE SOFTWARE IS PROVIDED "AS IS" AND 23 | ISC DISCLAIMS ALL 24 | WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND 25 | FITNESS. IN NO EVENT SHALL 26 | ISC BE LIABLE FOR ANY 27 | SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF 28 | USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING 29 | OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 30 | 31 | 32 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/JSON.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | JSON License 5 | 6 | 7 | 8 | Copyright (c) 2002 JSON.org 9 | 10 | 11 | 12 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and 13 | associated documentation files (the "Software"), to deal in the Software without restriction, 14 | including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, 15 | and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, 16 | subject to the following conditions: 17 | 18 | The above copyright notice and this permission notice shall be included in all copies or substantial 19 | portions of the Software. 20 | 21 | The Software shall be used for Good, not Evil. 22 | 23 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT 24 | LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN 25 | NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 26 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 27 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 28 | 29 | 30 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Latex2e.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 2007, 2008, 2009, 2010 Karl Berry. 5 | 6 | 7 | Copyright (C) 1988, 1994, 2007 Stephen Gilmore. 8 | 9 | 10 | Copyright (C) 1994, 1995, 1996 Torsten Martinsen. 11 | 12 | 13 | 14 | 15 | Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice 16 | and this permission notice are preserved on all copies. 17 | 18 | Permission is granted to copy and distribute modified versions of this manual under the conditions for 19 | verbatim copying, provided that the entire resulting derived work is distributed under the terms of a 20 | permission notice identical to this one. 21 | 22 | Permission is granted to copy and distribute translations of this manual into another language, under the 23 | above conditions for modified versions. 24 | 25 | 26 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Leptonica.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 2001 Leptonica. All rights reserved. 5 | 6 | 7 | 8 | This software is distributed in the hope that it will be useful, but with NO WARRANTY OF ANY KIND. 9 | 10 | No author or distributor accepts responsibility to anyone for the consequences of using this software, or 11 | for whether it serves any particular purpose or works at all, unless he or she says so in writing. 12 | Everyone is granted permission to copy, modify and redistribute this source code, for commercial or 13 | non-commercial purposes, with the following restrictions: 14 | 15 | 16 | 17 | 18 | 19 | (1) 20 | the origin of this source code must not be misrepresented; 21 | 22 | 23 | 24 | (2) 25 | modified versions must be plainly marked as such; and 26 | 27 | 28 | 29 | (3) 30 | this notice may not be removed or altered from any source or modified source distribution. 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Linux-OpenIB.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 4 | 5 | 6 | 7 | 8 | 9 | - 10 | Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 11 | 12 | 13 | 14 | - 15 | Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 16 | 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 19 | 20 | 21 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MIT-0.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MIT No Attribution 6 | 7 | 8 | 9 | 10 | Copyright 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | Permission is hereby granted, free of charge, to any person obtaining a copy of this 19 | software and associated documentation files (the "Software"), to deal in the Software 20 | without restriction, including without limitation the rights to use, copy, modify, 21 | merge, publish, distribute, sublicense, and/or sell copies of the Software, and to 22 | permit persons to whom the Software is furnished to do so. 23 | 24 | 25 | 26 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 27 | INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A 28 | PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 29 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 30 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 31 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MIT-CMU.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright 1989, 1991, 1992 by Carnegie Mellon University 5 | 6 | Derivative Work - 1996, 1998-2000 Copyright 1996, 1998-2000 The Regents of the University of California 7 | 8 | All Rights Reserved 9 | 10 | 11 | 12 | Permission to use, copy, modify and distribute this software and its documentation for any purpose and 13 | without fee is hereby granted, provided that the above copyright notice appears in all copies and that 14 | both that copyright notice and this permission notice appear in supporting documentation, and that the 15 | name of CMU and The Regents of the University of California not be used in advertising or publicity 16 | pertaining to distribution of the software without specific written permission. 17 | 18 | CMU AND THE REGENTS OF THE UNIVERSITY OF CALIFORNIA DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 19 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL CMU OR THE REGENTS 20 | OF THE UNIVERSITY OF CALIFORNIA BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY 21 | DAMAGES WHATSOEVER RESULTING FROM THE LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, 22 | NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF 23 | THIS SOFTWARE. 24 | 25 | 26 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MIT-advertising.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 2000-2008 Carsten Haitzler, Geoff Harrison and various contributors Copyright (C) 2004-2008 5 | Kim Woelders 6 | 7 | 8 | 9 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and 10 | associated documentation files (the "Software"), to deal in the Software without restriction, 11 | including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, 12 | and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, 13 | subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in all copies of the Software, 16 | its documentation and marketing & publicity materials, and acknowledgment shall be given in the 17 | documentation, materials and software packages that this Software was used. 18 | 19 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT 20 | LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN 21 | NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 22 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 23 | OTHER DEALINGS IN THE SOFTWARE. 24 | 25 | 26 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MIT-feh.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and 4 | associated documentation files (the "Software"), to deal in the Software without restriction, 5 | including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, 6 | and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, 7 | subject to the following conditions: 8 | 9 | The above copyright notice and this permission notice shall be included in all copies of the Software and 10 | its documentation and acknowledgment shall be given in the documentation and software packages that 11 | this Software was used. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT 14 | LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN 15 | NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 16 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 17 | OTHER DEALINGS IN THE SOFTWARE. 18 | 19 | 20 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MIT.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MIT License 5 | 6 | 7 | 8 | Copyright (c) 9 | 10 | 11 | 12 | 13 | 14 | 15 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and 16 | associated documentation files (the "Software"), to deal in the Software without restriction, 17 | including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, 18 | and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, 19 | subject to the following conditions: 20 | 21 | The above copyright notice and this permission notice 22 | (including the next paragraph) 23 | shall be included in all copies or substantial 24 | portions of the Software. 25 | 26 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT 27 | LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN 28 | NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 29 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 30 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 31 | 32 | 33 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MITNFA.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and 4 | associated documentation files (the "Software"), to deal in the Software without restriction, 5 | including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, 6 | and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, 7 | subject to the following conditions: 8 | 9 | The above copyright notice and this permission notice shall be included in all copies or substantial 10 | portions of the Software. 11 | 12 | Distributions of all or part of the Software intended to be used by the recipients as they would use the 13 | unmodified Software, containing modifications that substantially alter, remove, or disable 14 | functionality of the Software, outside of the documented configuration mechanisms provided by the 15 | Software, shall be modified such that the Original Author's bug reporting email addresses and urls are 16 | either replaced with the contact information of the parties responsible for the changes, or removed 17 | entirely. 18 | 19 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT 20 | LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN 21 | NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 22 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 23 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 24 | 25 | 26 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Mup.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (c) 1995-2012 by Arkkra Enterprises. All rights reserved. 5 | 6 | 7 | 8 | Redistribution and use in source and binary forms, with or without modification, are permitted provided 9 | that the following conditions are met: 10 | 11 | 12 | 13 | 14 | 15 | 1. 16 | Redistributions of source code must retain the above copyright notice, this list of conditions 17 | and the following DISCLAIMER. 18 | 19 | 20 | 21 | 2. 22 | Redistributions in binary form must reproduce the above copyright notice, this list of conditions 23 | and the following DISCLAIMER in the documentation and/or other materials provided with the 24 | distribution. 25 | 26 | 27 | 28 | 3. 29 | Any additions, deletions, or changes to the original files must be clearly indicated in 30 | accompanying documentation. including the reasons for the changes, and the names of those who 31 | made the modifications. 32 | 33 | 34 | DISCLAIMER 35 | 36 | THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 37 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO 38 | EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 39 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 40 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 41 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 42 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 43 | 44 | 45 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/NLPL.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | NO LIMIT PUBLIC LICENSE 5 | 6 | Version 0, June 2012 7 | 8 | 9 | 10 | Gilles LAMIRAL 11 | 12 | La Billais 13 | 14 | 35580 Baulon 15 | 16 | France 17 | 18 | 19 | 20 | NO LIMIT PUBLIC LICENSE 21 | 22 | 23 | 24 | Terms and conditions for copying, distribution, modification or anything else. 25 | 26 | 27 | 28 | 29 | 30 | 0. 31 | No limit to do anything with this work and this license. 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/NTP.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | NTP License (NTP) 5 | 6 | 7 | 8 | Copyright (c) 9 | 10 | (CopyrightHoldersName) (From 4-digit-year)-(To 4-digit-year) 11 | 12 | 13 | 14 | 15 | Permission to use, copy, modify, and distribute this software and its documentation for any purpose with 16 | or without fee is hereby granted, provided that the above copyright notice appears in all copies and 17 | that both the copyright notice and this permission notice appear in supporting documentation, and that 18 | the name 19 | 20 | (TrademarkedName) not be used in advertising or publicity pertaining 21 | to distribution of the software without specific, written prior permission. 22 | 23 | (TrademarkedName) makes no representations about the suitability 24 | this software for any purpose. It is provided "as is" without express or implied warranty. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Newsletr.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright 1989--2004 by Hunter Goatley. 5 | 6 | 7 | 8 | Permission is granted to anyone to use this software for any purpose on any computer system, and to 9 | redistribute it freely, subject to the following restrictions: 10 | 11 | 12 | 13 | 14 | 15 | 1. 16 | This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 17 | without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 18 | 19 | 20 | 21 | 2. 22 | Altered versions must be plainly marked as such, and must not be misrepresented as being the 23 | original software. 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Noweb.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Noweb is copyright 1989-2000 by Norman Ramsey. All rights reserved. 5 | 6 | 7 | 8 | Noweb is protected by copyright. It is not public-domain software or shareware, and it is not protected 9 | by a ``copyleft'' agreement like the one used by the Free Software Foundation. 10 | 11 | Noweb is available free for any use in any field of endeavor. You may redistribute noweb in whole or in 12 | part provided you acknowledge its source and include this COPYRIGHT file. You may modify noweb and 13 | create derived works, provided you retain this copyright notice, but the result may not be called 14 | noweb without my written consent. 15 | 16 | You may sell noweb if you wish. For example, you may sell a CD-ROM including noweb. 17 | 18 | You may sell a derived work, provided that all source code for your derived work is available, at no 19 | additional charge, to anyone who buys your derived work in any form. You must give permisson for said 20 | source code to be used and modified under the terms of this license. You must state clearly that your 21 | work uses or is based on noweb and that noweb is available free of change. You must also request that 22 | bug reports on your work be reported to you. 23 | 24 | 25 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Nunit.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole 5 | 6 | 7 | Copyright © 2000-2004 Philip A. Craig 8 | 9 | 10 | 11 | 12 | This software is provided 'as-is', without any express or implied warranty. In no event will the authors 13 | be held liable for any damages arising from the use of this software. 14 | 15 | Permission is granted to anyone to use this software for any purpose, including commercial applications, 16 | and to alter it and redistribute it freely, subject to the following restrictions: 17 | 18 | 19 | 20 | 21 | 22 | 1. 23 | The origin of this software must not be misrepresented; you must not claim that you wrote the 24 | original software. If you use this software in a product, an acknowledgment (see the 25 | following) in the product documentation is required. 26 | Portions Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie 27 | Poole or Copyright © 2000-2004 Philip A. Craig 28 | 29 | 30 | 31 | 32 | 2. 33 | Altered source versions must be plainly marked as such, and must not be misrepresented as being 34 | the original software. 35 | 36 | 37 | 38 | 3. 39 | This notice may not be removed or altered from any source distribution. 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OML.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | This FastCGI application library source and object code (the "Software") and its documentation (the 4 | "Documentation") are copyrighted by Open Market, Inc ("Open Market"). The following terms apply to all 5 | files associated with the Software and Documentation unless explicitly disclaimed in individual 6 | files. 7 | 8 | Open Market permits you to use, copy, modify, distribute, and license this Software and the Documentation 9 | for any purpose, provided that existing copyright notices are retained in all copies and that this 10 | notice is included verbatim in any distributions. No written agreement, license, or royalty fee is 11 | required for any of the authorized uses. Modifications to this Software and Documentation may be 12 | copyrighted by their authors and need not follow the licensing terms described here. If modifications 13 | to this Software and Documentation have new licensing terms, the new terms must be clearly indicated 14 | on the first page of each file where they apply. 15 | 16 | OPEN MARKET MAKES NO EXPRESS OR IMPLIED WARRANTY WITH RESPECT TO THE SOFTWARE OR THE DOCUMENTATION, 17 | INCLUDING WITHOUT LIMITATION ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. IN 18 | NO EVENT SHALL OPEN MARKET BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY DAMAGES ARISING FROM OR 19 | RELATING TO THIS SOFTWARE OR THE DOCUMENTATION, INCLUDING, WITHOUT LIMITATION, ANY INDIRECT, SPECIAL 20 | OR CONSEQUENTIAL DAMAGES OR SIMILAR DAMAGES, INCLUDING LOST PROFITS OR LOST DATA, EVEN IF OPEN MARKET 21 | HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THE SOFTWARE AND DOCUMENTATION ARE PROVIDED "AS 22 | IS". OPEN MARKET HAS NO LIABILITY IN CONTRACT, TORT, NEGLIGENCE OR OTHERWISE ARISING OUT OF THIS 23 | SOFTWARE OR THE DOCUMENTATION. 24 | 25 | 26 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/PostgreSQL.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | PostgreSQL Database Management System 5 | 6 | 7 | (formerly known as Postgres, then as Postgres95) 8 | 9 | 10 | 11 | 12 | Portions Copyright (c) 1996-2010, The PostgreSQL Global Development Group 13 | 14 | Portions Copyright (c) 1994, The Regents of the University of California 15 | 16 | 17 | 18 | Permission to use, copy, modify, and distribute this software and its documentation for any purpose, 19 | without fee, and without a written agreement is hereby granted, provided that the above copyright 20 | notice and this paragraph and the following two paragraphs appear in all copies. 21 | 22 | IN NO EVENT SHALL 23 | THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, 24 | INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE 25 | AND ITS DOCUMENTATION, EVEN IF 26 | THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF 27 | SUCH DAMAGE. 28 | 29 | 30 | THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 31 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED 32 | HEREUNDER IS ON AN "AS IS" BASIS, AND 33 | THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE 34 | MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. 35 | 36 | 37 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Qhull.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Qhull, Copyright (c) 1993-2003 5 | 6 | The National Science and Technology Research Center for Computation and Visualization of Geometric 7 | Structures (The Geometry Center) University of Minnesota 8 | 9 | 10 | email: qhull@qhull.org 11 | 12 | This software includes Qhull from The Geometry Center. Qhull is copyrighted as noted above. Qhull is free 13 | software and may be obtained via http from www.qhull.org. It may be freely copied, modified, and 14 | redistributed under the following conditions: 15 | 16 | 17 | 18 | 19 | 20 | 1. 21 | All copyright notices must remain intact in all files. 22 | 23 | 24 | 25 | 2. 26 | A copy of this text file must be distributed along with any copies of Qhull that you 27 | redistribute; this includes copies that you have modified, or copies of programs or other 28 | software products that include Qhull. 29 | 30 | 31 | 32 | 3. 33 | If you modify Qhull, you must include a notice giving the name of the person performing the 34 | modification, the date of modification, and the reason for such modification. 35 | 36 | 37 | 38 | 4. 39 | When distributing modified versions of Qhull, or other software products that include Qhull, you 40 | must provide notice that the original source code may be obtained as noted above. 41 | 42 | 43 | 44 | 5. 45 | There is no warranty or other guarantee of fitness for Qhull, it is provided solely "as is". Bug 46 | reports or fixes may be sent to qhull_bug@qhull.org; the authors may or may not act on them as 47 | they desire. 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/RSA-MD.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All rights reserved. 5 | 6 | 7 | 8 | License to copy and use this software is granted provided that it is identified as the "RSA Data 9 | Security, Inc. 10 | 11 | MD5 Message-Digest Algorithm" in all material mentioning 12 | or referencing this software or this function. 13 | 14 | 15 | License is also granted to make and use derivative works provided that such works are identified as 16 | "derived from the RSA Data Security, Inc. 17 | 18 | MD5 Message-Digest Algorithm" in all material mentioning 19 | or referencing the derived work. 20 | 21 | 22 | RSA Data Security, Inc. makes no representations concerning either the merchantability of this software 23 | or the suitability of this software for any particular purpose. It is provided "as is" without express 24 | or implied warranty of any kind. 25 | 26 | These notices must be retained in any copies of any part of this documentation and/or software. 27 | 28 | 29 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Rdisc.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Rdisc (this program) was developed by Sun Microsystems, Inc. and is provided for unrestricted use 4 | provided that this legend is included on all tape media and as a part of the software program in whole 5 | or part. Users may copy or modify Rdisc without charge, and they may freely distribute it. 6 | 7 | RDISC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE WARRANTIES OF DESIGN, 8 | MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR 9 | TRADE PRACTICE. 10 | 11 | Rdisc is provided with no support and without any obligation on the part of Sun Microsystems, Inc. to 12 | assist in its use, correction, modification or enhancement. 13 | 14 | SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE INFRINGEMENT OF COPYRIGHTS, TRADE 15 | SECRETS OR ANY PATENTS BY RDISC OR ANY PART THEREOF. 16 | 17 | In no event will Sun Microsystems, Inc. be liable for any lost revenue or profits or other special, 18 | indirect and consequential damages, even if Sun has been advised of the possibility of such 19 | damages. 20 | 21 | Sun Microsystems, Inc. 22 | 23 | 24 | 2550 Garcia Avenue 25 | 26 | 27 | Mountain View, California 94043 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/SGI-B-2.0.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SGI FREE SOFTWARE LICENSE B 5 | 6 | 7 | (Version 2.0, Sept. 18, 2008) 8 | 9 | 10 | 11 | 12 | Copyright (C) [dates of first publication] Silicon Graphics, Inc. All Rights Reserved. 13 | 14 | 15 | 16 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and 17 | associated documentation files (the "Software"), to deal in the Software without restriction, 18 | including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, 19 | and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, 20 | subject to the following conditions: 21 | 22 | The above copyright notice including the dates of first publication and either this permission notice or 23 | a reference to http://oss.sgi.com/projects/FreeB/ shall be included in all copies or substantial 24 | portions of the Software. 25 | 26 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT 27 | LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN 28 | NO EVENT SHALL SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 29 | AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR 30 | THE USE OR OTHER DEALINGS IN THE SOFTWARE. 31 | 32 | Except as contained in this notice, the name of Silicon Graphics, Inc. shall not be used in advertising 33 | or otherwise to promote the sale, use or other dealings in this Software without prior written 34 | authorization from Silicon Graphics, Inc. 35 | 36 | 37 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/SMLNJ.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | STANDARD ML OF NEW JERSEY COPYRIGHT NOTICE, LICENSE AND DISCLAIMER. 5 | 6 | 7 | 8 | Copyright (c) 2001-2011 by The Fellowship of SML/NJ 9 | 10 | 11 | Copyright (c) 1989-2001 by Lucent Technologies 12 | 13 | 14 | 15 | 16 | Permission to use, copy, modify, and distribute this software and its documentation for any purpose and 17 | without fee is hereby granted, provided that the above copyright notice appear in all copies and that 18 | both the copyright notice and this permission notice and warranty disclaimer appear in supporting 19 | documentation, and that the name of Lucent Technologies, Bell Labs or any Lucent entity not be used in 20 | advertising or publicity pertaining to distribution of the software without specific, written prior 21 | permission. 22 | 23 | Lucent disclaims all warranties with regard to this software, including all implied warranties of 24 | merchantability and fitness. In no event shall Lucent be liable for any special, indirect or 25 | consequential damages or any damages whatsoever resulting from loss of use, data or profits, whether 26 | in an action of contract, negligence or other tortious action, arising out of or in connection with 27 | the use or performance of this software. 28 | 29 | 30 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Spencer-86.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (c) 1986 by University of Toronto. Written by Henry Spencer. Not derived from licensed software. 5 | 6 | 7 | 8 | Permission is granted to anyone to use this software for any purpose on any computer system, and to 9 | redistribute it freely, subject to the following restrictions: 10 | 11 | 12 | 13 | 14 | 15 | 1. 16 | The author is not responsible for the consequences of use of this software, no matter how awful, 17 | even if they arise from defects in it. 18 | 19 | 20 | 21 | 2. 22 | The origin of this software must not be misrepresented, either by explicit claim or by omission. 23 | 24 | 25 | 26 | 3. 27 | Altered versions must be plainly marked as such, and must not be misrepresented as being the 28 | original software. 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Spencer-94.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright 1992, 1993, 1994 Henry Spencer. All rights reserved. 5 | 6 | 7 | 8 | This software is not subject to any license of the American Telephone and Telegraph Company or of the 9 | Regents of the University of California. 10 | 11 | 12 | Permission is granted to anyone to use this software for any purpose on any computer system, and to alter it 13 | and redistribute it, subject to the following restrictions: 14 | 15 | 16 | 17 | 18 | 19 | 1. 20 | The author is not responsible for the consequences of use of this software, no matter how awful, even 21 | if they arise from flaws in it. 22 | 23 | 24 | 25 | 2. 26 | The origin of this software must not be misrepresented, either by explicit claim or by omission. 27 | Since few users ever read sources, credits must appear in the documentation. 28 | 29 | 30 | 31 | 3. 32 | Altered versions must be plainly marked as such, and must not be misrepresented as being the original 33 | software. Since few users ever read sources, credits must appear in the documentation. 34 | 35 | 36 | 37 | 4. 38 | This notice may not be removed or altered. 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Spencer-99.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (c) 1998, 1999 Henry Spencer. All rights reserved. 5 | 6 | 7 | 8 | Development of this software was funded, in part, by Cray Research Inc., UUNET Communications Services 9 | Inc., Sun Microsystems Inc., and Scriptics Corporation, none of whom are responsible for the results. 10 | The author thanks all of them. 11 | 12 | Redistribution and use in source and binary forms - with or without modification - are permitted for any 13 | purpose, provided that redistributions in source form retain this entire copyright notice and indicate 14 | the origin and nature of any modifications. 15 | 16 | I'd appreciate being given credit for this package in the documentation of software which uses it, but 17 | that is not a requirement. 18 | 19 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 20 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO 21 | EVENT SHALL HENRY SPENCER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 22 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 23 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 24 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 25 | IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 | 27 | 28 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/StandardML-NJ.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | STANDARD ML OF NEW JERSEY COPYRIGHT NOTICE, LICENSE AND DISCLAIMER. 5 | 6 | 7 | 8 | Copyright (c) 2001-2011 by The Fellowship of SML/NJ 9 | 10 | 11 | Copyright (c) 1989-2001 by Lucent Technologies 12 | 13 | 14 | 15 | 16 | Permission to use, copy, modify, and distribute this software and its documentation for any purpose and 17 | without fee is hereby granted, provided that the above copyright notice appear in all copies and that 18 | both the copyright notice and this permission notice and warranty disclaimer appear in supporting 19 | documentation, and that the name of Lucent Technologies, Bell Labs or any Lucent entity not be used in 20 | advertising or publicity pertaining to distribution of the software without specific, written prior 21 | permission. 22 | 23 | Lucent disclaims all warranties with regard to this software, including all implied warranties of 24 | merchantability and fitness. In no event shall Lucent be liable for any special, indirect or 25 | consequential damages or any damages whatsoever resulting from loss of use, data or profits, whether 26 | in an action of contract, negligence or other tortious action, arising out of or in connection with 27 | the use or performance of this software. 28 | 29 | 30 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/TCP-wrappers.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright 1995 by Wietse Venema. All rights reserved. Some 5 | individual files may be covered by other copyrights. 6 | 7 | 8 | This material was originally written and compiled by Wietse 9 | Venema at Eindhoven University of Technology, The Netherlands, 10 | in 1990, 1991, 1992, 1993, 1994 and 1995. 11 | 12 | Redistribution and use in source and binary forms, with or 13 | without modification, are permitted provided that this entire 14 | copyright notice is duplicated in all such copies. 15 | 16 | This software is provided "as is" and without any expressed or 17 | implied warranties, including, without limitation, the implied 18 | warranties of merchantibility and fitness for any particular 19 | purpose. 20 | 21 | 22 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/TU-Berlin-1.0.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright 5 | 6 | 1992, 1993, 1994 by Jutta Degener and Carsten Bormann, 7 | 8 | 9 | Technische Universitaet Berlin 10 | 11 | 12 | 13 | 14 | Any use of this software is permitted provided that this notice is not 15 | removed and that neither the authors nor the Technische Universitaet Berlin 16 | are deemed to have made any representations as to the suitability of this 17 | software for any purpose nor are held responsible for any defects of 18 | this software. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE. 19 | 20 | 21 | 22 | As a matter of courtesy, the authors request to be informed about uses 23 | this software has found, about bugs in this software, and about any 24 | improvements that may be of general interest. 25 | 26 | 27 | 28 | 29 | Berlin, 30 | 28.11.1994 31 | 32 | Jutta Degener 33 | 34 | Carsten Bormann 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Unlicense.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | This is free and unencumbered software released into the public domain. 4 | 5 | Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in 6 | source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any 7 | means. 8 | 9 | In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and 10 | all copyright interest in the software to the public domain. We make this dedication for the benefit 11 | of the public at large and to the detriment of our heirs and 12 | 13 | 14 | successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all 15 | present and future rights to this software under copyright law. 16 | 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT 19 | LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN 20 | NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 21 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | 24 | For more information, please refer to 25 | 26 | 27 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/WTFPL.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 5 | 6 | 7 | Version 2, December 2004 8 | 9 | 10 | 11 | Copyright (C) 2004 Sam Hocevar 12 | 13 | 14 | Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and 15 | changing it is allowed as long as the name is changed. 16 | 17 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 18 | 19 | 20 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 21 | 22 | 23 | 24 | 25 | 26 | 27 | 0. 28 | You just DO WHAT THE FUCK YOU WANT TO. 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/WXwindows.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | EXCEPTION NOTICE 4 | 5 | 6 | 7 | 8 | 9 | 1. 10 | As a special exception, the copyright holders of this 11 | library give permission for additional uses of the 12 | text contained in this release of the library as 13 | licenced under the wxWindows Library Licence, applying 14 | either version 3.1 of the Licence, or (at your option) 15 | any later version of the Licence as published by the 16 | copyright holders of version 3.1 of the Licence 17 | document. 18 | 19 | 20 | 21 | 2. 22 | The exception is that you may use, copy, link, modify and 23 | distribute under your own terms, binary object code 24 | versions of works based on the Library. 25 | 26 | 27 | 28 | 3. 29 | If you copy code from files distributed under the terms 30 | of the GNU General Public Licence or the GNU Library 31 | General Public Licence into a copy of this library, as 32 | this licence permits, the exception does not apply to 33 | the code that you add in this way. To avoid misleading 34 | anyone as to the status of such modified files, you 35 | must delete this exception notice from such code 36 | and/or adjust the licensing conditions notice 37 | accordingly. 38 | 39 | 40 | 41 | 4. 42 | If you write modifications of your own for this library, 43 | it is your choice whether to permit this exception to 44 | apply to your modifications. If you do not wish that, 45 | you must delete the exception notice from such code 46 | and/or adjust the licensing conditions notice 47 | accordingly. 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Wsuipa.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | This file was added by Clea F. Rees on 2008/11/30 with the permission of Dean Guenther and pointers to 5 | this file were added to all source files. 6 | 7 | 8 | 9 | Unlimited copying and redistribution of each of the files is permitted as long as the file is not 10 | modified. Modifications, and redistribution of modified versions, are also permitted, but only if the 11 | resulting file is renamed. 12 | 13 | 14 | 15 | The copyright holder is Washington State University. The original author of the fonts is Janene Winter. 16 | The primary contact (as of 2008) is Dean Guenther. 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/X11.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | X11 License 5 | 6 | 7 | 8 | Copyright (C) 1996 X Consortium 9 | 10 | 11 | 12 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and 13 | associated documentation files (the "Software"), to deal in the Software without restriction, 14 | including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, 15 | and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, 16 | subject to the following conditions: 17 | 18 | The above copyright notice and this permission notice shall be included in all copies or substantial 19 | portions of the Software. 20 | 21 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT 22 | LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN 23 | NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 24 | ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 25 | USE OR OTHER DEALINGS IN THE SOFTWARE. 26 | 27 | Except as contained in this notice, the name of the X Consortium shall not be used in advertising or 28 | otherwise to promote the sale, use or other dealings in this Software without prior written 29 | authorization from the X Consortium. 30 | 31 | X Window System is a trademark of X Consortium, Inc. 32 | 33 | 34 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/XSkat.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | This program is free software; you can redistribute it freely. 4 | 5 | 6 | Use it at your own risk; there is NO WARRANTY. 7 | 8 | 9 | Redistribution of modified versions is permitted provided that the following conditions are met: 10 | 11 | 12 | 13 | 14 | 15 | 1. 16 | All copyright & permission notices are preserved. 17 | 18 | 19 | 20 | 2.a) 21 | Only changes required for packaging or porting are made. 22 | 23 | or 24 | 25 | 26 | 27 | 2.b) 28 | It is clearly stated who last changed the program. The program is renamed or the version 29 | number is of the form x.y.z, where x.y is the version of the original program and z is an 30 | arbitrary suffix. 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Xerox.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (c) 1995, 1996 Xerox Corporation. All Rights Reserved. 5 | 6 | 7 | 8 | Use and copying of this software and preparation of derivative works based upon this software are 9 | permitted. Any copy of this software or of any derivative work must include the above copyright notice 10 | of Xerox Corporation, this paragraph and the one after it. Any distribution of this software or 11 | derivative works must comply with all applicable United States export control laws. 12 | 13 | This software is made available AS IS, and XEROX CORPORATION DISCLAIMS ALL WARRANTIES, EXPRESS OR 14 | IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 15 | PARTICULAR PURPOSE, AND NOTWITHSTANDING ANY OTHER PROVISION CONTAINED HEREIN, ANY LIABILITY FOR 16 | DAMAGES RESULTING FROM THE SOFTWARE OR ITS USE IS EXPRESSLY DISCLAIMED, WHETHER ARISING IN CONTRACT, 17 | TORT (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, EVEN IF XEROX CORPORATION IS ADVISED OF THE 18 | POSSIBILITY OF SUCH DAMAGES. 19 | 20 | 21 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Xnet.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The X.Net, Inc. License 5 | 6 | 7 | 8 | Copyright (c) 2000-2001 X.Net, Inc. Lafayette, California, USA 9 | 10 | 11 | 12 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and 13 | associated documentation files (the "Software"), to deal in the Software without restriction, 14 | including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, 15 | and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, 16 | subject to the following conditions: 17 | 18 | The above copyright notice and this permission notice shall be included in all copies or substantial 19 | portions of the Software. 20 | 21 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT 22 | LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN 23 | NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 24 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 25 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 26 | 27 | This agreement shall be governed in all respects by the laws of the State of California and by the laws 28 | of the United States of America. 29 | 30 | 31 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Zed.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | (c) Jim Davies, January 1995 5 | 6 | 7 | 8 | You may copy and distribute this file freely. Any queries and complaints should be forwarded to 9 | Jim.Davies@comlab.ox.ac.uk. 10 | 11 | If you make any changes to this file, please do not distribute the results under the name `zed-csp.sty'. 12 | 13 | 14 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Zlib.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | zlib License 5 | 6 | 7 | 8 | Copyright (c) 9 | 10 | 11 | This software is provided 'as-is', without any express or implied warranty. In no event will the authors 12 | be held liable for any damages arising from the use of this software. 13 | 14 | Permission is granted to anyone to use this software for any purpose, including commercial applications, 15 | and to alter it and redistribute it freely, subject to the following restrictions: 16 | 17 | 18 | 19 | 20 | 21 | 1. 22 | The origin of this software must not be misrepresented; you must not claim that you wrote the 23 | original software. If you use this software in a product, an acknowledgment in the product 24 | documentation would be appreciated but is not required. 25 | 26 | 27 | 28 | 2. 29 | Altered source versions must be plainly marked as such, and must not be misrepresented as being 30 | the original software. 31 | 32 | 33 | 34 | 3. 35 | This notice may not be removed or altered from any source distribution. 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/curl.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | COPYRIGHT AND PERMISSION NOTICE 5 | 6 | 7 | 8 | Copyright (c) 1996 - 2015, Daniel Stenberg, . 9 | 10 | 11 | All rights reserved. 12 | 13 | 14 | 15 | 16 | Permission to use, copy, modify, and distribute this software for any purpose with or without fee is 17 | hereby granted, provided that the above copyright notice and this permission notice appear in all 18 | copies. 19 | 20 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT 21 | LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF 22 | THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 23 | DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF 24 | OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 25 | 26 | Except as contained in this notice, the name of a copyright holder shall not be used in advertising or 27 | otherwise to promote the sale, use or other dealings in this Software without prior written 28 | authorization of the copyright holder. 29 | 30 | 31 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/custom/Amazon-Software-ref.txt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 3 | * All Rights Reserved. 4 | * 5 | * Licensed under the Amazon Software License (the "License"). 6 | * You may not use this file except in compliance with the 7 | * License. A copy of the License is located at 8 | * 9 | * http://aws.amazon.com/asl/ 10 | * 11 | * or in the "license" file accompanying this file. This file is 12 | * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR 13 | * CONDITIONS OF ANY KIND, express or implied. See the License 14 | * for the specific language governing permissions and 15 | * limitations under the License. 16 | */ 17 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/custom/README.md: -------------------------------------------------------------------------------- 1 | Custom license templates can be added to this directory to extend the training set. The Amazon license was added as a reference. 2 | 3 | The license submitter and date also needs to be added to [custom_license.yml](license_identifier/data/custom_license.yml). 4 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/diffmark.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 1. 8 | you can do what you want with it 9 | 10 | 11 | 12 | 2. 13 | I refuse any responsibility for the consequences 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/dvipdfm.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | A modified version of this file may be distributed, but it should be distributed with a *different* name. 4 | Changed files must be distributed *together with a complete and unchanged* distribution of these 5 | files. 6 | 7 | 8 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/eCos-2.0.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | The eCos license version 2.0 4 | 5 | This file is part of eCos, the Embedded Configurable Operating System. Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc. 6 | 7 | eCos is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 or (at your option) any later version. 8 | 9 | eCos 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. See the GNU General Public License for more details. 10 | 11 | You should have received a copy of the GNU General Public License along with eCos; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 12 | 13 | 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. 14 | 15 | This exception does not invalidate any other reasons why a work based on this file might be covered by the GNU General Public License. 16 | 17 | Alternative licenses for eCos may be arranged by contacting Red Hat, Inc. at http://sources.redhat.com/ecos/ecos-license/ ------------------------------------------- 18 | 19 | 20 | 21 | ####ECOSGPLCOPYRIGHTEND#### 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Bison-exception-2.2.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Bison Exception 5 | 6 | 7 | As a special exception, you may create a larger work that 8 | contains part or all of the Bison parser skeleton and 9 | distribute that work under terms of your choice, so long as 10 | that work isn't itself a parser generator using the skeleton 11 | or a modified version thereof as a parser skeleton. 12 | Alternatively, if you modify or redistribute the parser 13 | skeleton itself, you may (at your option) remove this special 14 | exception, which will cause the skeleton and the resulting 15 | Bison output files to be licensed under the GNU General Public 16 | License without this special exception. 17 | 18 | This special exception was added by the Free Software Foundation 19 | in version 2.2 of Bison. 20 | 21 | 22 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Bootloader-exception.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Bootloader Exception 5 | 6 | 7 | 8 | In addition to the permissions in the GNU General Public License, the 9 | authors give you unlimited permission to link or embed compiled bootloader 10 | and related files into combinations with other programs, and to distribute 11 | those combinations without any restriction coming from the use of those 12 | files. (The General Public License restrictions do apply in other respects; 13 | for example, they cover modification of the files, and distribution when 14 | not linked into a 15 | combined executable.) 16 | 17 | 18 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Classpath-exception-2.0.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Linking this library statically or dynamically with other modules 4 | is making a combined work based on this library. Thus, the 5 | terms and conditions of the GNU General Public License cover 6 | the whole combination. 7 | 8 | As a special exception, the copyright holders of this library 9 | give you permission to link this library with independent 10 | modules to produce an executable, regardless of the license 11 | terms of these independent modules, and to copy and distribute 12 | the resulting executable under terms of your choice, provided 13 | that you also meet, for each linked independent module, the 14 | terms and conditions of the license of that module. An 15 | independent module is a module which is not derived from or 16 | based on this library. If you modify this library, you may 17 | extend this exception to your version of the library, but you 18 | are not obligated to do so. If you do not wish to do so, 19 | delete this exception statement from your version. 20 | 21 | 22 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/FLTK-exception.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | The FLTK library and included programs are provided under the 4 | terms of the GNU Library General Public License (LGPL) with 5 | the following exceptions: 6 | 7 | Modifications to the FLTK configure script, config header file, 8 | and makefiles by themselves to support a specific platform do 9 | not constitute a modified or derivative work. 10 | 11 | The authors do request that such modifications be contributed to 12 | the FLTK project - send all contributions to 13 | "fltk-bugs@fltk.org". 14 | 15 | Widgets that are subclassed from FLTK widgets do not constitute a 16 | derivative work. 17 | 18 | Static linking of applications and widgets to the FLTK library 19 | does not constitute a derivative work and does not require the 20 | author to provide source code for the application or widget, 21 | use the shared FLTK libraries, or link their applications or 22 | widgets against a user-supplied version of FLTK. 23 | 24 | If you link the application or widget to a modified version of 25 | FLTK, then the changes to FLTK must be provided under the 26 | terms of the LGPL in sections 1, 2, and 4. 27 | 28 | You do not have to provide a copy of the FLTK license with 29 | programs that are linked to the FLTK library, nor do you have 30 | to identify the FLTK license in your program or documentation 31 | as required by section 6 of the LGPL. 32 | 33 | However, programs must still identify their use of FLTK. The 34 | following example statement can be included in user 35 | documentation to satisfy this requirement: 36 | 37 | [program/widget] is based in part on the work of the FLTK project 38 | (http://www.fltk.org). 39 | 40 | 41 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Fawkes-Runtime-exception.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Linking this library statically or dynamically with other modules 4 | is making a combined work based on this library. Thus, the 5 | terms and conditions of the GNU General Public License cover 6 | the whole combination. As a special exception, the copyright 7 | holders of this library give you permission to link this 8 | library with independent modules to produce an executable, 9 | regardless of the license terms of these independent modules, 10 | and to copy and distribute the resulting executable under 11 | terms of your choice, provided that you also meet, for each 12 | linked independent module, the terms and conditions of the 13 | license of that module. An independent module is a module 14 | which is not derived from or based on this library. If you 15 | modify this library, you may extend this exception to your 16 | version of the library, but you are not obligated to do so. If 17 | you do not wish to do so, delete this exception statement from 18 | your version. Additionally if other files instantiate 19 | templates or use macros or inline functions from this file, or 20 | you compile this file and link it with other files to produce 21 | an executable, this file does not by itself cause the 22 | resulting executable to be covered by the GNU General Public 23 | License. This exception does not however invalidate any other 24 | reasons why the executable file might be covered by the GNU 25 | General Public License. 26 | 27 | 28 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Font-exception-2.0.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | As a special exception, if you create a document which uses this 4 | font, and embed this font or unaltered portions of this font 5 | into the document, this font does not by itself cause the 6 | resulting document to be covered by the GNU General Public 7 | License. This exception does not however invalidate any other 8 | reasons why the document might be covered by the GNU General 9 | Public License. If you modify this font, you may extend this 10 | exception to your version of the font, but you are not 11 | obligated to do so. If you do not wish to do so, delete this 12 | exception statement from your version. 13 | 14 | 15 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/GCC-exception-2.0.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | In addition to the permissions in the GNU 4 | Library General Public License, the Free 5 | Software Foundation gives you unlimited permission to link the 6 | compiled version of this file into 7 | combinations with other programs, and to distribute 8 | those 9 | 10 | programs 11 | without any restriction coming from the use of this file. (The 12 | 13 | General 14 | Public License restrictions do apply in other respects; for 15 | example, they cover modification of the file, and distribution 16 | when not linked into 17 | 18 | another program.) 19 | 20 | 21 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/LLVM-exception.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | LLVM Exceptions to the Apache 2.0 License 8 | 9 | 10 | 11 | 12 | 13 | As an exception, if, as a result of your compiling your source 14 | code, portions of this Software are embedded into an Object form of 15 | such source code, you may redistribute such embedded portions in such 16 | Object form without complying with the conditions of Sections 4(a), 17 | 4(b) and 4(d) of the License. 18 | 19 | 20 | In addition, if you combine or link compiled forms of this Software 21 | with software that is licensed under the GPLv2 ("Combined Software") 22 | and if a court of competent jurisdiction determines that the patent 23 | provision (Section 3), the indemnity provision (Section 9) or other 24 | Section of the License conflicts with the conditions of the GPLv2, 25 | you may retroactively and prospectively choose to deem waived or 26 | otherwise exclude such Section(s) of the License, but only in their 27 | entirety and only with respect to the Combined Software. 28 | 29 | 30 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/LZMA-exception.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | I.6 Special exception for LZMA compression module 4 | 5 | LZMA exception 6 | 7 | 8 | Igor Pavlov and Amir Szekely, the authors of the LZMA compression 9 | module for NSIS, expressly permit you to statically or 10 | dynamically link your code (or bind by name) to the files from 11 | the LZMA compression module for NSIS without subjecting your 12 | linked code to the terms of the Common Public license version 13 | 1.0. Any modifications or additions to files from the LZMA 14 | compression module for NSIS, however, are subject to the terms 15 | of the Common Public License version 1.0. 16 | 17 | 18 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Libtool-exception.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | As a special exception to the GNU General Public License, if you 4 | distribute this file as part of a program or library that is 5 | built using GNU Libtool, you may include this file under the 6 | same distribution terms that you use for the rest of that 7 | program. 8 | 9 | 10 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Linux-syscall-note.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | NOTE! This copyright does *not* cover user programs that use kernel 4 | services by normal system calls - this is merely considered normal use 5 | of the kernel, and does *not* fall under the heading of "derived work". 6 | Also note that the GPL below is copyrighted by the Free Software 7 | Foundation, but the instance of code that it refers to (the Linux 8 | kernel) is copyrighted by me and others who actually wrote it. 9 | 10 | 11 | Also note that the only valid version of the GPL as far as the kernel 12 | is concerned is _this_ particular version of the license (ie v2, not 13 | v2.2 or v3.x or whatever), unless explicitly otherwise stated. 14 | 15 | 16 | Linus Torvalds 17 | 18 | 19 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Nokia-Qt-exception-1.1.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nokia Qt LGPL Exception version 1.1 5 | 6 | 7 | As an additional permission to the GNU Lesser General Public 8 | License version 2.1, the object code form of a "work that 9 | uses the Library" may incorporate material from a header file 10 | that is part of the Library. You may distribute such object 11 | code under terms of your choice, provided that: 12 | 13 | 14 | 15 | 16 | 17 | (i) 18 | the header files of the Library have not been modified; and 19 | 20 | 21 | 22 | (ii) 23 | the incorporated material is limited to numerical 24 | parameters, data structure layouts, accessors, macros, 25 | inline functions and templates; and 26 | 27 | 28 | 29 | (iii) 30 | you comply with the terms of Section 6 of the GNU Lesser 31 | General Public License version 2.1. 32 | 33 | 34 | Moreover, you may apply this exception to a modified 35 | version of the Library, provided that such 36 | modification does not involve copying material from 37 | the Library into the modified Library's header files 38 | unless such material is limited to 39 | 40 | 41 | 42 | 43 | 44 | (i) 45 | numerical parameters; 46 | 47 | 48 | 49 | (ii) 50 | data structure layouts; 51 | 52 | 53 | 54 | (iii) 55 | accessors; and 56 | 57 | 58 | 59 | (iv) 60 | small macros, templates and inline functions of five 61 | lines or less in length. 62 | 63 | 64 | Furthermore, you are not required to apply this additional 65 | permission to a modified version of the Library. 66 | 67 | 68 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/OCCT-exception-1.0.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Open CASCADE Exception (version 1.0) to GNU LGPL version 2.1. 5 | 6 | 7 | The object code (i.e. not a source) form of a "work that uses the 8 | Library" can incorporate material from a header file that is 9 | part of the Library. As a special exception to the GNU Lesser 10 | General Public License version 2.1, you may distribute such 11 | object code incorporating material from header files provided 12 | with the Open CASCADE Technology libraries (including code of 13 | CDL generic classes) under terms of your choice, provided that 14 | you give prominent notice in supporting documentation to this 15 | code that it makes use of or is based on facilities provided 16 | by the Open CASCADE Technology software. 17 | 18 | 19 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/OCaml-LGPL-linking-exception.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | OCaml LGPL Linking Exception 5 | 6 | 7 | 8 | As a special exception to the GNU 9 | Lesser General Public License, you 10 | may link, statically or dynamically, a "work that uses 11 | the OCaml Core 12 | System" with a publicly distributed version of 13 | the OCaml Core 14 | System to produce an executable file containing portions of 15 | 16 | the OCaml Core 17 | System, and distribute that executable file under terms of 18 | your choice, without any of the additional requirements listed in 19 | clause 6 of the GNU Lesser General Public License. By "a publicly 20 | distributed version of 21 | the OCaml Core 22 | System", we mean either the unmodified 23 | 24 | OCaml Core System as distributed by 25 | INRIA, or a modified version of 26 | 27 | the OCaml Core System that is distributed under the 28 | conditions defined in clause 2 of the GNU Lesser General Public 29 | License. This exception does not however invalidate any other 30 | reasons why the executable file might be covered by the GNU Lesser 31 | General Public License. 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/PS-or-PDF-font-exception-20170817.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The font and related files in this directory are distributed under the 5 | GNU AFFERO GENERAL PUBLIC LICENSE Version 3 (see the file COPYING), with 6 | the following exemption: 7 | 8 | 9 | As a special exception, permission is granted to include these font 10 | programs in a Postscript or PDF file that consists of a document that 11 | contains text to be displayed or printed using this font, regardless 12 | of the conditions or license applying to the document itself. 13 | 14 | 15 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Qt-GPL-exception-1.0.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | The Qt Company GPL Exception 1.0 6 | 7 | 8 | Exception 1: 9 | 10 | 11 | As a special exception, you may create a larger work which contains the 12 | output of this application and distribute that work under terms of your 13 | choice, so long as the work is not otherwise derived from or based on 14 | this application and so long as the work does not in itself generate 15 | output that contains the output from this application in its original 16 | or modified form. 17 | 18 | 19 | Exception 2: 20 | 21 | 22 | As a special exception, you have permission to combine this application 23 | with Plugins licensed under the terms of your choice, to produce an 24 | executable, and to copy and distribute the resulting executable under 25 | the terms of your choice. However, the executable must be accompanied 26 | by a prominent notice offering all users of the executable the entire 27 | source code to this application, excluding the source code of the 28 | independent modules, but including any changes you have made to this 29 | application, under the terms of this license. 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Qt-LGPL-exception-1.1.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | The Qt Company Qt LGPL Exception version 1.1 6 | 7 | 8 | As an additional permission to the GNU Lesser General Public 9 | License version 2.1, the object code form of a "work that 10 | uses the Library" may incorporate material from a header file 11 | that is part of the Library. You may distribute such object 12 | code under terms of your choice, provided that: 13 | 14 | 15 | 16 | 17 | 18 | (i) 19 | the header files of the Library have not been modified; and 20 | 21 | 22 | 23 | (ii) 24 | the incorporated material is limited to numerical 25 | parameters, data structure layouts, accessors, macros, 26 | inline functions and templates; and 27 | 28 | 29 | 30 | (iii) 31 | you comply with the terms of Section 6 of the GNU Lesser 32 | General Public License version 2.1. 33 | 34 | 35 | Moreover, you may apply this exception to a modified 36 | version of the Library, provided that such 37 | modification does not involve copying material from 38 | the Library into the modified Library's header files 39 | unless such material is limited to 40 | 41 | 42 | 43 | 44 | 45 | (i) 46 | numerical parameters; 47 | 48 | 49 | 50 | (ii) 51 | data structure layouts; 52 | 53 | 54 | 55 | (iii) 56 | accessors; and 57 | 58 | 59 | 60 | (iv) 61 | small macros, templates and inline functions of five 62 | lines or less in length. 63 | 64 | 65 | Furthermore, you are not required to apply this additional 66 | permission to a modified version of the Library. 67 | 68 | 69 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Qwt-exception-1.0.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Qwt License Version 1.0, 5 | 6 | 7 | January 1, 2003 8 | 9 | 10 | 11 | The Qwt library and included programs are provided under the 12 | terms of the GNU LESSER GENERAL PUBLIC LICENSE (LGPL) with the 13 | following exceptions: 14 | 15 | 16 | 17 | 18 | 19 | 1. 20 | Widgets that are subclassed from Qwt widgets do not 21 | constitute a derivative work. 22 | 23 | 24 | 25 | 2. 26 | Static linking of applications and widgets to the Qwt 27 | library does not constitute a derivative work and does 28 | not require the author to provide source code for the 29 | application or widget, use the shared Qwt libraries, 30 | or link their applications or widgets against a 31 | user-supplied version of Qwt. If you link the 32 | application or widget to a modified version of Qwt, 33 | then the changes to Qwt must be provided under the 34 | terms of the LGPL in sections 1, 2, and 4. 35 | 36 | 37 | 38 | 3. 39 | You do not have to provide a copy of the Qwt license with 40 | programs that are linked to the Qwt library, nor do 41 | you have to identify the Qwt license in your program 42 | or documentation as required by section 6 of the 43 | LGPL. 44 | 45 | 46 | However, programs must still identify their use of Qwt. The 47 | following example statement can be included in user 48 | documentation to satisfy this requirement: [program/widget] is 49 | based in part on the work of the Qwt project 50 | (http://qwt.sf.net)." 51 | 52 | 53 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/WxWindows-exception-3.1.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | EXCEPTION NOTICE 4 | 5 | 6 | 7 | 8 | 9 | 1. 10 | As a special exception, the copyright holders of this 11 | library give permission for additional uses of the 12 | text contained in this release of the library as 13 | licenced under the wxWindows Library Licence, applying 14 | either version 3.1 of the Licence, or (at your option) 15 | any later version of the Licence as published by the 16 | copyright holders of version 3.1 of the Licence 17 | document. 18 | 19 | 20 | 21 | 2. 22 | The exception is that you may use, copy, link, modify and 23 | distribute under your own terms, binary object code 24 | versions of works based on the Library. 25 | 26 | 27 | 28 | 3. 29 | If you copy code from files distributed under the terms 30 | of the GNU General Public Licence or the GNU Library 31 | General Public Licence into a copy of this library, as 32 | this licence permits, the exception does not apply to 33 | the code that you add in this way. To avoid misleading 34 | anyone as to the status of such modified files, you 35 | must delete this exception notice from such code 36 | and/or adjust the licensing conditions notice 37 | accordingly. 38 | 39 | 40 | 41 | 4. 42 | If you write modifications of your own for this library, 43 | it is your choice whether to permit this exception to 44 | apply to your modifications. If you do not wish that, 45 | you must delete the exception notice from such code 46 | and/or adjust the licensing conditions notice 47 | accordingly. 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/eCos-exception-2.0.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | As a special exception, if other files instantiate templates or 4 | use macros or inline functions from this file, or you compile 5 | this file and link it with other works to produce a work based 6 | on this file, this file does not by itself cause the resulting 7 | work to be covered by the GNU General Public License. However 8 | the source code for this file must still be made available in 9 | accordance with section (3) of the GNU General Public 10 | License. 11 | 12 | This exception does not invalidate any other reasons why a work 13 | based on this file might be covered by the GNU General Public 14 | License. 15 | 16 | 17 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/gnu-javamail-exception.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | As a special exception, if you link this library with other files 4 | to produce an executable, this library does not by itself 5 | cause the resulting executable to be covered by the GNU 6 | General Public License. This exception does not however 7 | invalidate any other reasons why the executable file might be 8 | covered by the GNU General Public License. 9 | 10 | 11 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/i2p-gpl-java-exception.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | In addition, as a special exception, 4 | 5 | XXXX gives permission to 6 | link the code of this program with the proprietary Java 7 | implementation provided by Sun (or other vendors as well), and 8 | distribute linked combinations including the two. You must obey 9 | the GNU General Public License in all respects for all of the 10 | code used other than the proprietary Java implementation. If you 11 | modify this file, you may extend this exception to your version 12 | of the file, but you are not obligated to do so. If you do not 13 | wish to do so, delete this exception statement from your 14 | version. 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/mif-exception.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | As a special exception, you may use this file as part of a free 4 | software library without restriction. Specifically, if other 5 | files instantiate templates or use macros or inline functions 6 | from this file, or you compile this file and link it with 7 | other files to produce an executable, this file does not by 8 | itself cause the resulting executable to be covered by the GNU 9 | General Public License. This exception does not however 10 | invalidate any other reasons why the executable file might be 11 | covered by the GNU General Public License. 12 | 13 | 14 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/openvpn-openssl-exception.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Special exception for linking OpenVPN with OpenSSL: 5 | 6 | 7 | In addition, as a special exception, OpenVPN Technologies, Inc. 8 | gives permission to link the code of this program with the 9 | OpenSSL Library (or with modified versions of OpenSSL that use 10 | the same license as OpenSSL), and distribute linked 11 | combinations including the two. You must obey the GNU General 12 | Public License in all respects for all of the code used other 13 | than OpenSSL. If you modify this file, you may extend this 14 | exception to your version of the file, but you are not 15 | obligated to do so. If you do not wish to do so, delete this 16 | exception statement from your version. 17 | 18 | 19 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/u-boot-exception-2.0.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | GPL License Exception: 6 | 7 | 8 | Even though U-Boot in general is covered by the GPL-2.0/GPL-2.0+, 9 | this does *not* cover the so-called "standalone" applications 10 | that use U-Boot services by means of the jump table provided 11 | by U-Boot exactly for this purpose - this is merely considered 12 | normal use of U-Boot, and does *not* fall under the heading of 13 | "derived work". 14 | 15 | The header files "include/image.h" and 16 | "arch/*/include/asm/u-boot.h" define interfaces to U-Boot. 17 | Including these (unmodified) header files in another file is 18 | considered normal use of U-Boot, and does *not* fall under the 19 | heading of "derived work". 20 | 21 | 22 | -- Wolfgang Denk 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/gnuplot.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright 1986 - 1993, 1998, 2004 Thomas Williams, Colin Kelley 5 | 6 | 7 | 8 | Permission to use, copy, and distribute this software and its documentation for any purpose with or 9 | without fee is hereby granted, provided that the above copyright notice appear in all copies and that 10 | both that copyright notice and this permission notice appear in supporting documentation. 11 | 12 | Permission to modify the software is granted, but not the right to distribute the complete modified 13 | source code. Modifications are to be distributed as patches to the released version. Permission to 14 | distribute binaries produced by compiling modified sources is granted, provided you 15 | 16 | 17 | 18 | 19 | 20 | 1. 21 | distribute the corresponding source modifications from the released version in the form of a 22 | patch file along with the binaries, 23 | 24 | 25 | 26 | 2. 27 | add special version identification to distinguish your version in addition to the base 28 | release version number, 29 | 30 | 31 | 32 | 3. 33 | provide your name and address as the primary contact for the support of your modified version, and 34 | 35 | 36 | 37 | 4. 38 | retain our contact information in regard to use of the base software. 39 | 40 | 41 | Permission to distribute the released version of the source code along with corresponding source 42 | modifications in the form of a patch file is granted with same provisions 2 through 4 for binary 43 | distributions. 44 | 45 | This software is provided "as is" without express or implied warranty to the extent permitted 46 | by applicable law. 47 | 48 | 49 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/AFL-1.1-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | "Licensed under the Academic Free License version 1.1." 5 | 6 | 7 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/AFL-1.2-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Licensed under the Academic Free License version 1.2 5 | 6 | 7 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/AFL-2.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Licensed under the Academic Free License version 2.0 5 | 6 | 7 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/AFL-2.1-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Licensed under the Academic Free License version 2.1 5 | 6 | 7 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/AFL-3.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Licensed under the Academic Free License version 3.0 5 | 6 | 7 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/AGPL-3.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 5 | [year] [name of author] 6 | This program is free software: you can redistribute it and/or modify it 7 | under the terms of the GNU Affero General Public License as published 8 | by the Free Software Foundation, version 3. This program is distributed 9 | in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 10 | even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 11 | PURPOSE. See the GNU Affero General Public License for more details. 12 | You should have received a copy of the GNU Affero General Public License 13 | along with this program. If not, see 14 | 15 | 16 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/AGPL-3.0-only-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 5 | [year] [name of author] 6 | 7 | This program is free software: you can redistribute it and/or modify it 8 | under the terms of the GNU Affero General Public License as published 9 | by the Free Software Foundation, version 3. 10 | 11 | 12 | This program is distributed in the hope that it will be useful, 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | GNU Affero General Public License for more details. 16 | 17 | 18 | 19 | You should have received a copy of the GNU Affero General Public License 20 | along with this program. If not, see 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/AGPL-3.0-or-later-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | Copyright (C) 11 | 12 | 13 | 14 | 15 | This program is free software: you can redistribute it and/or 16 | modify it under the terms of the GNU Affero General Public 17 | License as published by the Free Software Foundation, either 18 | version 3 of the License, or (at your option) any later version. 19 | 20 | 21 | 22 | This program is distributed in the hope that it will be useful, 23 | but WITHOUT ANY WARRANTY; without even the implied warranty 24 | of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 25 | See the GNU Affero General Public License for more details. 26 | 27 | 28 | 29 | You should have received a copy of the GNU Affero General 30 | Public License along with this program. If not, see 31 | . 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/Apache-2.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright 5 | [yyyy] [name of copyright owner] 6 | 7 | Licensed under the Apache License, Version 2.0 (the "License"); 8 | 9 | 10 | you may not use this file except in compliance with the License. 11 | 12 | 13 | You may obtain a copy of the License at 14 | 15 | 16 | http://www.apache.org/licenses/LICENSE-2.0 17 | 18 | Unless required by applicable law or agreed to in writing, software 19 | 20 | 21 | distributed under the License is distributed on an "AS IS" BASIS, 22 | 23 | 24 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 25 | 26 | 27 | See the License for the specific language governing permissions and 28 | 29 | 30 | limitations under the License. 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/BitTorrent-1.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). 5 | You may not copy or use this file, in either source code or executable form, except in compliance with 6 | the License. You may obtain a copy of the License at http://www.bittorrent.com/license/. 7 | 8 | Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, 9 | either express or implied. See the License for the specific language governing rights and limitations 10 | under the License. 11 | 12 | 13 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/BitTorrent-1.1-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The contents of this file are subject to the BitTorrent Open Source License Version 5 | 1.1 (the 6 | License). You may not copy or use this file, in either source code or executable form, except 7 | in compliance with the License. You may obtain a copy of the License at 8 | http://www.bittorrent.com/license/. 9 | 10 | Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, 11 | either express or implied. See the License for the specific language governing rights and limitations 12 | under the License. 13 | 14 | 15 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/CUA-OPL-1.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | "The contents of this file are subject to the CUA Office Public License Version 1.0 (the 5 | "License"); you may not use this file except in compliance with the License. You may obtain 6 | a copy of the License at http://cuaoffice.sourceforge.net/ 7 | 8 | Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF 9 | ANY KIND, either express or implied. See the License for the specific language governing rights and 10 | limitations under the License. 11 | 12 | The Original Code is 13 | ______________________________________. 14 | 15 | The Initial Developer of the Original Code is 16 | ________________________. Portions created by 17 | 18 | ______________________ are Copyright (C) 19 | ______ _______________________. All Rights Reserved. 20 | 21 | Contributor(s): 22 | ______________________________________. 23 | 24 | Alternatively, the contents of this file may be used under the terms of the 25 | _____ license (the 26 | " 27 | [___] License"), in which case the provisions of 28 | [______] License are applicable instead of 29 | those above. If you wish to allow use of your version of this file only under the terms of the 30 | [____] 31 | License and not to allow others to use your version of this file under the CUAPL, indicate your 32 | decision by deleting the provisions above and replace them with the notice and other provisions 33 | required by the 34 | [___] License. If you do not delete the provisions above, a recipient may use your 35 | version of this file under either the CUAPL or the 36 | [___] License." 37 | 38 | 39 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/ECL-1.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (c) 5 | 6 | 7 | 8 | 9 | Licensed under the Educational Community License version 1.0 10 | 11 | 12 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/ECL-2.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright 5 | [yyyy] [name of copyright owner] Licensed under the 6 | 7 | 8 | Educational Community License, Version 2.0 (the "License"); you may 9 | 10 | 11 | not use this file except in compliance with the License. You may 12 | 13 | 14 | obtain a copy of the License at 15 | 16 | 17 | http://www.osedu.org/licenses/ECL-2.0 18 | 19 | Unless required by applicable law or agreed to in writing, 20 | 21 | 22 | software distributed under the License is distributed on an "AS IS" 23 | 24 | 25 | BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express 26 | 27 | 28 | or implied. See the License for the specific language governing 29 | 30 | 31 | permissions and limitations under the License. 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GFDL-1.1-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (c) 5 | YEAR YOUR NAME 6 | . Permission is granted to copy, distribute and/or modify this 7 | document under the terms of the GNU Free Documentation License, 8 | Version 1.1 or any later version published by the Free Software 9 | Foundation; with the Invariant Sections being LIST THEIR 10 | TITLES, with the Front-Cover Texts being LIST, and with the 11 | Back-Cover Texts being LIST. A copy of the license is included 12 | in the section entitled "GNU Free Documentation License". 13 | 14 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GFDL-1.1-only-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (c) 5 | YEAR YOUR NAME 6 | Permission is granted to copy, distribute and/or modify this 7 | document under the terms of the GNU Free Documentation License, 8 | Version 1.1; with the Invariant Sections being LIST THEIR 9 | TITLES, with the Front-Cover Texts being LIST, and with the 10 | Back-Cover Texts being LIST. A copy of the license is included 11 | in the section entitled "GNU Free Documentation License". 12 | 13 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GFDL-1.1-or-later-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Copyright (c) YEAR YOUR NAME. Permission is granted to copy, 6 | distribute and/or modify this document under the terms of the 7 | GNU Free Documentation License, Version 1.1 or any later version 8 | published by the Free Software Foundation; with 9 | the Invariant Sections 10 | being LIST THEIR TITLES, with 11 | the Front-Cover Texts being LIST, 12 | and with 13 | the Back-Cover Texts being LIST. A copy of the license is 14 | included in the section entitled "GNU Free Documentation License". 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GFDL-1.2-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (c) 5 | YEAR YOUR NAME 6 | . Permission is granted to copy, distribute and/or modify this 7 | document under the terms of the GNU Free Documentation License, 8 | Version 1.2 or any later version published by the Free Software 9 | Foundation; with no Invariant Sections, no Front-Cover Texts, 10 | and no Back-Cover Texts. A copy of the license is included 11 | in the section entitled "GNU Free Documentation License". 12 | 13 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GFDL-1.2-only-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (c) 5 | YEAR YOUR NAME 6 | . Permission is granted to copy, distribute and/or modify this 7 | document under the terms of the GNU Free Documentation License, 8 | Version 1.2; with no Invariant Sections, no Front-Cover Texts, 9 | and no Back-Cover Texts. A copy of the license is included 10 | in the section entitled "GNU Free Documentation License". 11 | 12 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GFDL-1.2-or-later-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Copyright (c) 6 | YEAR YOUR NAME. Permission is granted to copy, 7 | distribute and/or modify this document under the terms of the GNU 8 | Free Documentation License, Version 1.2 or any later version published 9 | by the Free Software Foundation; with 10 | no Invariant Sections, 11 | 12 | no Front-Cover Texts, 13 | and 14 | no Back-Cover Texts. A copy of the license is 15 | included in the section entitled "GNU Free Documentation License". 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GFDL-1.3-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (c) 5 | YEAR YOUR NAME 6 | Permission is granted to copy, distribute and/or modify this 7 | document under the terms of the GNU Free Documentation License, 8 | Version 1.3 or any later version published by the Free Software 9 | Foundation; with no Invariant Sections, no Front-Cover Texts, 10 | and no Back-Cover Texts. A copy of the license is included 11 | in the section entitled "GNU Free Documentation License". 12 | 13 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GFDL-1.3-only-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (c) 5 | YEAR YOUR NAME 6 | Permission is granted to copy, distribute and/or modify this 7 | document under the terms of the GNU Free Documentation License, 8 | Version 1.3; with no Invariant Sections, no Front-Cover Texts, 9 | and no Back-Cover Texts. A copy of the license is included 10 | in the section entitled "GNU Free Documentation License". 11 | 12 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GFDL-1.3-or-later-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Copyright (c) 6 | YEAR YOUR NAME. Permission is granted to copy, 7 | distribute and/or modify this document under the terms of the GNU 8 | Free Documentation License, Version 1.3 or any later version published 9 | by the Free Software Foundation; with 10 | no Invariant Sections, 11 | 12 | no Front-Cover Texts, 13 | and 14 | no Back-Cover Texts. A copy of the license is 15 | included in the section entitled "GNU Free Documentation License". 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-1.0+-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Copyright (C) 9 | 19yy 10 | 11 | This program is free software; you can redistribute it and/or modify it under the terms of the GNU 12 | General Public License as published by the Free Software Foundation; either version 1, or (at your 13 | option) any later version. 14 | 15 | This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even 16 | the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 17 | Public License for more details. 18 | 19 | You should have received a copy of the GNU General Public License along with this program; if not, write 20 | to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 21 | 22 | 23 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-1.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 5 | 19xx name of author 6 | 7 | This program is free software; you can redistribute it and/or 8 | modify it under the terms of the GNU General Public License 9 | as published by the Free Software Foundation; version 1. 10 | 11 | 12 | 13 | This program is distributed in the hope that it will be 14 | useful, but WITHOUT ANY WARRANTY; without even the implied 15 | warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 16 | PURPOSE. See the GNU General Public License for more details. 17 | 18 | 19 | 20 | You should have received a copy of the GNU General Public License 21 | along with this program; if not, write to the Free Software 22 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-1.0-only-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 5 | 19xx name of author 6 | 7 | This program is free software; you can redistribute it and/or 8 | modify it under the terms of the GNU General Public License 9 | as published by the Free Software Foundation; version 1. 10 | 11 | 12 | 13 | This program is distributed in the hope that it will be 14 | useful, but WITHOUT ANY WARRANTY; without even the implied 15 | warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 16 | PURPOSE. See the GNU General Public License for more details. 17 | 18 | 19 | 20 | You should have received a copy of the GNU General Public License 21 | along with this program; if not, write to the Free Software 22 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-1.0-or-later-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Copyright (C) 10 | 19yy 11 | 12 | 13 | 14 | This program is free software; you can redistribute it 15 | and/or modify it under the terms of the GNU General Public 16 | License as published by the Free Software Foundation; 17 | either version 1, or (at your option) any later version. 18 | 19 | 20 | 21 | This program is distributed in the hope that it will be 22 | useful, but WITHOUT ANY WARRANTY; without even the implied 23 | warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 24 | PURPOSE. See the GNU General Public License for more details. 25 | 26 | 27 | 28 | You should have received a copy of the GNU General Public License 29 | along with this program; if not, write to the Free Software 30 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-2.0+-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Copyright (C) 9 | 10 | 11 | This program is free software; you can redistribute it and/or modify it under the terms of the GNU 12 | General Public License as published by the Free Software Foundation; either version 2 of the License, 13 | or (at your option) any later version. 14 | 15 | This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even 16 | the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 17 | Public License for more details. 18 | 19 | You should have received a copy of the GNU General Public License along with this program; if not, write 20 | to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 21 | 22 | 23 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-2.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 5 | yyyy name of author 6 | 7 | This program is free software; you can redistribute it and/or 8 | modify it under the terms of the GNU General Public License 9 | as published by the Free Software Foundation; version 2. 10 | 11 | 12 | 13 | This program is distributed in the hope that it will be 14 | useful, but WITHOUT ANY WARRANTY; without even the implied 15 | warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 16 | PURPOSE. See the GNU General Public License for more details. 17 | 18 | 19 | 20 | You should have received a copy of the GNU General Public License 21 | along with this program; if not, write to the Free Software Foundation, 22 | Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 23 | USA. 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-2.0-only-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 5 | yyyy name of author 6 | 7 | This program is free software; you can redistribute it and/or 8 | modify it under the terms of the GNU General Public License 9 | as published by the Free Software Foundation; version 2. 10 | 11 | 12 | 13 | This program is distributed in the hope that it will be 14 | useful, but WITHOUT ANY WARRANTY; without even the implied 15 | warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 16 | PURPOSE. See the GNU General Public License for more details. 17 | 18 | 19 | 20 | You should have received a copy of the GNU General Public License 21 | along with this program; if not, write to the Free Software Foundation, 22 | Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 23 | USA. 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-2.0-or-later-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Copyright (C) 10 | 11 | 12 | 13 | 14 | This program is free software; you can redistribute it and/or 15 | modify it under the terms of the GNU General Public License 16 | as published by the Free Software Foundation; either version 17 | 2 of the License, or (at your option) any later version. 18 | 19 | 20 | 21 | This program is distributed in the hope that it will be 22 | useful, but WITHOUT ANY WARRANTY; without even the implied 23 | warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 24 | PURPOSE. See the GNU General Public License for more details. 25 | 26 | 27 | 28 | You should have received a copy of the GNU General Public License 29 | along with this program; if not, write to the Free Software Foundation, 30 | Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 31 | USA. 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-3.0+-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Copyright (C) 9 | 10 | 11 | This program is free software: you can redistribute it and/or modify it under the terms of the GNU 12 | General Public License as published by the Free Software Foundation, either version 3 of the License, 13 | or (at your option) any later version. 14 | 15 | This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even 16 | the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 17 | Public License for more details. 18 | 19 | You should have received a copy of the GNU General Public License along with this program. If not, see 20 | . 21 | 22 | 23 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-3.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 5 | 6 | 7 | This program is free software: you can redistribute it and/or 8 | modify it under the terms of the GNU General Public License 9 | as published by the Free Software Foundation, version 3. 10 | 11 | 12 | 13 | This program is distributed in the hope that it will be 14 | useful, but WITHOUT ANY WARRANTY; without even the implied 15 | warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 16 | PURPOSE. See the GNU General Public License for more details. 17 | 18 | 19 | 20 | You should have received a copy of the GNU General 21 | Public License along with this program. If not, see 22 | . 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-3.0-only-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 5 | 6 | 7 | This program is free software: you can redistribute it and/or 8 | modify it under the terms of the GNU General Public License 9 | as published by the Free Software Foundation, version 3. 10 | 11 | 12 | 13 | This program is distributed in the hope that it will be 14 | useful, but WITHOUT ANY WARRANTY; without even the implied 15 | warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 16 | PURPOSE. See the GNU General Public License for more details. 17 | 18 | 19 | 20 | You should have received a copy of the GNU General 21 | Public License along with this program. If not, see 22 | . 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-3.0-or-later-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | Copyright (C) 11 | 12 | 13 | 14 | 15 | This program is free software: you can redistribute it and/or 16 | modify it under the terms of the GNU General Public License 17 | as published by the Free Software Foundation, either version 18 | 3 of the License, or (at your option) any later version. 19 | 20 | 21 | 22 | This program is distributed in the hope that it will be 23 | useful, but WITHOUT ANY WARRANTY; without even the implied 24 | warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 25 | PURPOSE. See the GNU General Public License for more details. 26 | 27 | 28 | 29 | You should have received a copy of the GNU General 30 | Public License along with this program. If not, see 31 | . 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/Interbase-1.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | "The contents of this file are subject to the Interbase Public License Version 1.0 (the 5 | "License"); you may not use this file except in compliance with the License. You may 6 | obtain a copy of the License at http://www.Interbase.com/IPL.html 7 | 8 | Software distributed under the License is distributed on an "AS IS" basis, WITHOUT 9 | WARRANTY OF ANY KIND, either express or implied. See the License for the specific language 10 | governing rights and limitations under the License. 11 | 12 | The Original Code was created by InterBase Software Corp and its successors. 13 | 14 | Portions created by Borland/Inprise are Copyright (C) Borland/Inprise. All Rights Reserved. 15 | 16 | Contributor(s): 17 | ______________________________________. 18 | 19 | 20 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LGPL-2.0+-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | one line to give the library's name and an idea of what it does. 6 | 7 | 8 | Copyright (C) 9 | year name of author 10 | 11 | This library is free software; you can redistribute it and/or modify it under the terms of the GNU 12 | Library General Public License as published by the Free Software Foundation; either version 2 of the 13 | License, or (at your option) any later version. 14 | 15 | This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even 16 | the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library 17 | General Public License for more details. 18 | 19 | You should have received a copy of the GNU Library General Public License along with this library; if 20 | not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, 21 | USA. 22 | 23 | 24 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LGPL-2.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 5 | year name of author 6 | This library is free software; you can redistribute it and/or modify it 7 | under the terms of the GNU Library General Public License as published 8 | by the Free Software Foundation; version 2. This library is distributed 9 | in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 10 | even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 11 | PURPOSE. See the GNU Library General Public License for more details. 12 | You should have received a copy of the GNU Library General Public 13 | License along with this library; if not, write to the Free Software 14 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. 15 | 16 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LGPL-2.0-only-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 5 | year name of author 6 | This library is free software; you can redistribute it and/or modify it 7 | under the terms of the GNU Library General Public License as published 8 | by the Free Software Foundation; version 2. 9 | 10 | This library is distributed 11 | in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 12 | even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 13 | PURPOSE. See the GNU Library General Public License for more details. 14 | 15 | You should have received a copy of the GNU Library General Public 16 | License along with this library; if not, write to the Free Software 17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LGPL-2.0-or-later-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | one line to give the library's name 7 | and an idea of what it does. 8 | 9 | 10 | Copyright (C) 11 | year name of author 12 | 13 | 14 | 15 | This library is free software; you can redistribute it and/or 16 | modify it under the terms of the GNU Library General Public 17 | License as published by the Free Software Foundation; either 18 | version 2 of the License, or (at your option) any later version. 19 | 20 | 21 | 22 | This library is distributed in the hope that it will be useful, 23 | but WITHOUT ANY WARRANTY; without even the implied warranty 24 | of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See 25 | the GNU Library General Public License for more details. 26 | 27 | 28 | 29 | You should have received a copy of the GNU Library 30 | General Public License along with this library; if 31 | not, write to the Free Software Foundation, Inc., 51 32 | Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LGPL-2.1+-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Copyright (C) 9 | 10 | 11 | This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser 12 | General Public License as published by the Free Software Foundation; either version 2.1 of the 13 | License, or (at your option) any later version. 14 | 15 | This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even 16 | the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser 17 | General Public License for more details. 18 | 19 | You should have received a copy of the GNU Lesser General Public License along with this library; if not, 20 | write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 21 | USA 22 | 23 | 24 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LGPL-2.1-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 5 | year name of author 6 | 7 | This library is free software; you can redistribute it and/or 8 | modify it under the terms of the GNU Lesser General Public 9 | License as published by the Free Software Foundation; version 2.1. 10 | 11 | 12 | 13 | This library is distributed in the hope that it will be useful, 14 | but WITHOUT ANY WARRANTY; without even the implied warranty 15 | of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 16 | See the GNU Lesser General Public License for more details. 17 | 18 | 19 | 20 | You should have received a copy of the GNU Lesser General Public License 21 | along with this library; if not, write to the Free Software Foundation, 22 | Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LGPL-2.1-only-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 5 | year name of author 6 | 7 | This library is free software; you can redistribute it and/or 8 | modify it under the terms of the GNU Lesser General Public 9 | License as published by the Free Software Foundation; version 2.1. 10 | 11 | 12 | 13 | This library is distributed in the hope that it will be useful, 14 | but WITHOUT ANY WARRANTY; without even the implied warranty 15 | of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 16 | See the GNU Lesser General Public License for more details. 17 | 18 | 19 | 20 | You should have received a copy of the GNU Lesser General Public License 21 | along with this library; if not, write to the Free Software Foundation, 22 | Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LGPL-2.1-or-later-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Copyright (C) 9 | 10 | 11 | 12 | This library is free software; you can redistribute it and/or 13 | modify it under the terms of the GNU Lesser General Public 14 | License as published by the Free Software Foundation; either 15 | version 2.1 of the License, or (at your option) any later version. 16 | 17 | 18 | 19 | This library is distributed in the hope that it will be useful, 20 | but WITHOUT ANY WARRANTY; without even the implied warranty 21 | of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 22 | See the GNU Lesser General Public License for more details. 23 | 24 | 25 | 26 | You should have received a copy of the GNU Lesser General Public License 27 | along with this library; if not, write to the Free Software Foundation, 28 | Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LPPL-1.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | %% 5 | pig.sty 6 | 7 | 8 | %% Copyright 9 | 2001 M. Y. Name 10 | 11 | % This program can redistributed and/or modified under the terms 12 | 13 | 14 | % of the LaTeX Project Public License Distributed from CTAN 15 | 16 | 17 | % archives in directory macros/latex/base/lppl.txt; either 18 | 19 | 20 | % version 1 of the License, or (at your option) any later version. 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LPPL-1.1-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | %% 5 | pig.dtx 6 | 7 | 8 | %% Copyright 9 | 2001 M. Y. Name 10 | 11 | 12 | % 13 | 14 | 15 | % This program may be distributed and/or modified under the 16 | 17 | 18 | % conditions of the LaTeX Project Public License, either version 1.1 19 | 20 | 21 | % of this license or (at your option) any later version. 22 | 23 | 24 | % The latest version of this license is in 25 | 26 | 27 | % http://www.latex-project.org/lppl.txt 28 | 29 | 30 | % and version 1.1 or later is part of all distributions of LaTeX 31 | 32 | 33 | % version 1999/06/01 or later. 34 | 35 | 36 | % 37 | 38 | 39 | % This program consists of the 40 | files pig.dtx and pig.ins 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LPPL-1.2-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | %% 5 | pig.dtx 6 | 7 | 8 | %% Copyright 9 | 2001 M. Y. Name 10 | 11 | 12 | % 13 | 14 | 15 | % This program may be distributed and/or modified under the 16 | 17 | 18 | % conditions of the LaTeX Project Public License, either version 1.2 19 | 20 | 21 | % of this license or (at your option) any later version. 22 | 23 | 24 | % The latest version of this license is in 25 | 26 | 27 | % http://www.latex-project.org/lppl.txt 28 | 29 | 30 | % and version 1.2 or later is part of all distributions of LaTeX 31 | 32 | 33 | % version 1999/12/01 or later. 34 | 35 | 36 | % 37 | 38 | 39 | % This program consists of the 40 | files pig.dtx and pig.ins 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LPPL-1.3a-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | %% 5 | pig.dtx 6 | 7 | 8 | %% Copyright 9 | 2003 M. Y. Name 10 | 11 | 12 | % 13 | 14 | 15 | % This work may be distributed and/or modified under the 16 | 17 | 18 | % conditions of the LaTeX Project Public License, either version 1.3 19 | 20 | 21 | % of this license or (at your option) any later version. 22 | 23 | 24 | % The latest version of this license is in 25 | 26 | 27 | % http://www.latex-project.org/lppl.txt 28 | 29 | 30 | % and version 1.3 or later is part of all distributions of LaTeX 31 | 32 | 33 | % version 2003/12/01 or later. 34 | 35 | 36 | % 37 | 38 | 39 | % This work has the LPPL maintenance status " 40 | maintained". 41 | 42 | 43 | % 44 | 45 | 46 | % 47 | This Current Maintainer of this work is 48 | M. Y. Name. 49 | 50 | 51 | % 52 | 53 | 54 | % This work consists of the 55 | files pig.dtx and pig.ins 56 | 57 | 58 | % and the derived file pig.sty. 59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LPPL-1.3c-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | %% 5 | pig.dtx 6 | 7 | 8 | %% Copyright 9 | 2005 M. Y. Name 10 | 11 | 12 | % 13 | 14 | 15 | % This work may be distributed and/or modified under the 16 | 17 | 18 | % conditions of the LaTeX Project Public License, either version 1.3 19 | 20 | 21 | % of this license or (at your option) any later version. 22 | 23 | 24 | % The latest version of this license is in 25 | 26 | 27 | % http://www.latex-project.org/lppl.txt 28 | 29 | 30 | % and version 1.3 or later is part of all distributions of LaTeX 31 | 32 | 33 | % version 2005/12/01 or later. 34 | 35 | 36 | % 37 | 38 | 39 | % This work has the LPPL maintenance status " 40 | maintained". 41 | 42 | 43 | % 44 | 45 | 46 | % The Current Maintainer of this work is 47 | M. Y. Name. 48 | 49 | 50 | % 51 | 52 | 53 | % This work consists of the 54 | files pig.dtx and pig.ins 55 | 56 | 57 | % and the derived file pig.sty. 58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/MPL-1.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | "The contents of this file are subject to the Mozilla Public License Version 1.0 (the 5 | "License"); you may not use this file except in compliance with the License. You may obtain 6 | a copy of the License at http://www.mozilla.org/MPL/ 7 | 8 | Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF 9 | ANY KIND, either express or implied. See the License for the specific language governing rights and 10 | limitations under the License. 11 | 12 | The Original Code is 13 | 14 | _____. The Initial Developer of the Original Code is 15 | 16 | _____. Portions created by 17 | 18 | _____ are Copyright (C) 19 | 20 | _____. All Rights Reserved. Contributor(s): 21 | 22 | _____." 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/MPL-1.1-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | "The contents of this file are subject to the Mozilla Public License Version 1.1 (the 5 | "License"); you may not use this file except in compliance with the License. You may obtain 6 | a copy of the License at http://www.mozilla.org/MPL/ 7 | 8 | Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF 9 | ANY KIND, either express or implied. See the License for the specific language governing rights and 10 | limitations under the License. 11 | 12 | The Original Code is 13 | ______________________________________. 14 | 15 | The Initial Developer of the Original Code is 16 | ________________________. 17 | 18 | 19 | Portions created by 20 | ______________________ are Copyright (C) 21 | ______. All Rights Reserved. 22 | 23 | 24 | Contributor(s): 25 | ______________________________________. 26 | 27 | Alternatively, the contents of this file may be used under the terms of the 28 | _____ license (the 29 | " 30 | [___] License"), in which case the provisions of 31 | [______] License are applicable instead of 32 | those above. If you wish to allow use of your version of this file only under the terms of the 33 | [____] 34 | License and not to allow others to use your version of this file under the MPL, indicate your decision 35 | by deleting the provisions above and replace them with the notice and other provisions required by the 36 | 37 | [___] License. If you do not delete the provisions above, a recipient may use your version of this 38 | file under either the MPL or the 39 | [___] License." 40 | 41 | 42 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/OCLC-2.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | "Copyright (c) 5 | 2000- (insert then current year) OCLC Online Computer Library Center, Inc. and other 6 | contributors. All rights reserved. The contents of this file, as updated from time to time by the 7 | OCLC Office of Research, are subject to OCLC Research Public License Version 2.0 (the "License"); 8 | you may not use this file except in compliance with the License. You may obtain a current copy of 9 | the License at http://purl.oclc.org/oclc/research/ORPL/. Software distributed under the License is 10 | distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the 11 | License for the specific language governing rights and limitations under the License. This 12 | software consists of voluntary contributions made by many individuals on behalf of OCLC Research. 13 | For more information on OCLC Research, please see http://www.oclc.org/research/. The Original Code 14 | is 15 | ______________________________. The Initial Developer of the Original Code is 16 | 17 | ________________________. Portions created by 18 | ______________________ are Copyright (C) 19 | ____________________________. All Rights Reserved. Contributor(s): 20 | 21 | ______________________________________." 22 | 23 | 24 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/OSL-1.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | "Licensed under the Open Software License version 1.0" 5 | 6 | 7 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/OSL-1.1-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Licensed under the Open Software License version 1.1 5 | 6 | 7 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/OSL-2.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Licensed under the Open Software License version 2.0 5 | 6 | 7 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/OSL-2.1-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Licensed under the Open Software License version 2.1 5 | 6 | 7 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/OSL-3.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Licensed under the Open Software License version 3.0 5 | 6 | 7 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/RPSL-1.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | "Copyright (c) 1995-2002 RealNetworks, Inc. and/or its licensors. All Rights Reserved. 5 | 6 | The contents of this file, and the files included with this file, are subject to the current version of 7 | the RealNetworks Public Source License Version 1.0 (the "RPSL") available at 8 | https://www.helixcommunity.org/content/rpsl unless you have licensed the file under the RealNetworks 9 | Community Source License Version 1.0 (the "RCSL") available at 10 | https://www.helixcommunity.org/content/rcsl, in which case the RCSL will apply. You may also obtain 11 | the license terms directly from RealNetworks. You may not use this file except in compliance with the 12 | RPSL or, if you have a valid RCSL with RealNetworks applicable to this file, the RCSL. Please see the 13 | applicable RPSL or RCSL for the rights, obligations and limitations governing use of the contents of 14 | the file. 15 | 16 | This file is part of the Helix DNA Technology. RealNetworks is the developer of the Original code and 17 | owns the copyrights in the portions it created. 18 | 19 | This file, and the files included with this file, is distributed and made available on an 'AS IS' basis, 20 | WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH 21 | WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR 22 | PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23 | 24 | Contributor(s): 25 | ____________________________________ 26 | 27 | Technology Compatibility Kit Test Suite(s) Location (if licensed under the RCSL): 28 | 29 | _____" 30 | 31 | 32 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/SCEA-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright 5 | 2005 Sony Computer Entertainment Inc. 6 | 7 | Licensed under the SCEA Shared Source License, Version 1.0 (the "License"); you may not use this file 8 | except in compliance with the License. You may obtain a copy of the License at: 9 | 10 | 11 | http://research.scea.com/scea_shared_source_license.html 12 | 13 | 14 | Unless required by applicable law or agreed to in writing, software distributed under the License is 15 | distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 16 | implied. See the License for the specific language governing permissions and limitations under the 17 | License. 18 | 19 | 20 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/SGI-B-1.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | License Applicability. Except to the extent portions of this file are made subject to an alternative 5 | license as permitted in the SGI Free Software License B, Version 1.0 (the "License"), the contents of 6 | this file are subject only to the provisions of the License. You may not use this file except in 7 | compliance with the License. You may obtain a copy of the License at Silicon Graphics, Inc., attn: 8 | Legal Services, 1600 Ampitheatre Parkway, Mountain View, CA 94043-1351, or at: 9 | 10 | http://oss.sgi.com/projects/FreeB 11 | 12 | Note that, as provided in the License, the Software is distributed on an "AS IS" basis, with ALL EXPRESS 13 | AND IMPLIED WARRANTIES AND CONDITIONS DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED 14 | WARRANTIES AND CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, 15 | AND NON-INFRINGEMENT. 16 | 17 | Original Code. The Original Code is: [ 18 | 19 | name of software, 20 | 21 | version number, and 22 | 23 | release date 24 | ], developed by Silicon Graphics, Inc. The Original Code is Copyright (c) 25 | [ 26 | 27 | dates of first publication, as appearing in 28 | the Notice in the Original Code 29 | ] Silicon Graphics, Inc. Copyright in any 30 | portions created by third parties is as indicated elsewhere herein. All Rights Reserved. 31 | 32 | Additional Notice Provisions: [ 33 | 34 | such additional provisions, if any, as appear in 35 | the Notice in the Original Code under the heading "Additional Notice Provisions" 36 | ] 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/SGI-B-1.1-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | License Applicability. Except to the extent portions of this file are made subject to an alternative 5 | license as permitted in the SGI Free Software License B, Version 1.1 (the "License"), the contents of 6 | this file are subject only to the provisions of the License. You may not use this file except in 7 | compliance with the License. You may obtain a copy of the License at Silicon Graphics, Inc., attn: 8 | Legal Services, 1600 Amphitheatre Parkway, Mountain View, CA 94043-1351, or at: 9 | 10 | http://oss.sgi.com/projects/FreeB 11 | 12 | Note that, as provided in the License, the Software is distributed on an "AS IS" basis, with ALL EXPRESS 13 | AND IMPLIED WARRANTIES AND CONDITIONS DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED 14 | WARRANTIES AND CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, 15 | AND NON-INFRINGEMENT. 16 | 17 | Original Code. The Original Code is: [ 18 | 19 | name of software, 20 | 21 | version number, and 22 | 23 | release date 24 | ], developed by Silicon Graphics, Inc. The Original Code is Copyright (c) 25 | [ 26 | 27 | dates of first publication, as appearing in 28 | the Notice in the Original Code 29 | ] 30 | Silicon Graphics, Inc. Copyright in any portions created by third 31 | parties is as indicated elsewhere herein. All Rights Reserved. 32 | 33 | 34 | Additional Notice Provisions: [ 35 | 36 | such additional provisions, if any, as appear in the 37 | Notice in the Original Code under the heading "Additional Notice Provisions" 38 | ] 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/SISSL-1.2-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | "The contents of this file are subject to the Sun Industry Standards Source License Version 1.2 (the 5 | License); You 6 | 7 | 8 | may not use this file except in compliance with the License." 9 | 10 | 11 | "You may obtain a copy of the License at gridengine.sunsource.net/license.html" 12 | 13 | "Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, 14 | either express or 15 | 16 | 17 | implied. See the License for the specific language governing rights and limitations under the License." 18 | 19 | 20 | "The Original Code is Grid Engine." 21 | 22 | "The Initial Developer of the Original Code is: 23 | 24 | 25 | Sun Microsystems, Inc." 26 | 27 | 28 | "Portions created by: Sun Microsystems, Inc. are Copyright (C) 2001 Sun Microsystems, Inc." 29 | 30 | "All Rights Reserved." 31 | 32 | "Contributor(s): 33 | __________________________________" 34 | 35 | 36 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/SISSL-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | "The contents of this file are subject to the Sun Standards License Version 1.1 (the "License"); You may 5 | not use this file except in compliance with the License. You may obtain a copy of the License at 6 | 7 | _______________________________. 8 | 9 | Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, 10 | either 11 | 12 | 13 | express or implied. See the License for the specific language governing rights and limitations 14 | under the License. 15 | 16 | 17 | The Original Code is 18 | ______________________________________. 19 | 20 | The Initial Developer of the Original Code is: 21 | Sun Microsystems, Inc.. 22 | 23 | Portions created by: 24 | _______________________________________ 25 | 26 | are Copyright (C): 27 | _______________________________________ 28 | 29 | All Rights Reserved. 30 | 31 | Contributor(s): 32 | _______________________________________ 33 | 34 | 35 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/SPL-1.0-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The contents of this file are subject to the Sun Public License Version 1.0 (the License); you may not 5 | use this file except in compliance with the License. A copy of the License is available at 6 | http://www.sun.com/ 7 | 8 | The Original Code is 9 | _________________. 10 | The Initial Developer of the Original Code is 11 | ___________. 12 | Portions created by 13 | ______ are Copyright (C) 14 | _________. 15 | All Rights Reserved. 16 | 17 | Contributor(s): 18 | ______________________________________. 19 | 20 | Alternatively, the contents of this file may be used under the terms of the 21 | _____ license (the 22 | ?[___] License?), in which case the provisions of 23 | [______] License are applicable instead of those above. If 24 | you wish to allow use of your version of this file only under the terms of the 25 | [____] License and not 26 | to allow others to use your version of this file under the SPL, indicate your decision by deleting the 27 | provisions above and replace them with the notice and other provisions required by the 28 | [___] License. 29 | If you do not delete the provisions above, a recipient may use your version of this file under either 30 | the SPL or the 31 | [___] License. 32 | 33 | 34 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/W3C-20150513-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | [$name_of_software: 6 | $distribution_URI] 7 | 8 | Copyright (c) 9 | 10 | [$date-of-software] World Wide Web 11 | Consortium, (Massachusetts Institute of Technology, European Research 12 | Consortium for Informatics and Mathematics, Keio University, Beihang). 13 | All Rights Reserved. This work is distributed under the W3C® Software 14 | License [1] in the hope that it will be useful, but WITHOUT ANY 15 | WARRANTY; without even the implied warranty of MERCHANTABILITY or 16 | FITNESS FOR A PARTICULAR PURPOSE. 17 | 18 | 19 | [1] http://www.w3.org/Consortium/Legal/copyright-software 20 | 21 | 22 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/W3C-header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 5 | [$date-of-software] World Wide Web Consortium, 6 | (Massachusetts Institute of Technology, European Research Consortium for Informatics and Mathematics, Keio 7 | University). All Rights Reserved. 8 | This work is distributed under the W3C® Software License in the hope that it will be useful, but WITHOUT ANY 9 | WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 10 | 11 | 12 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/libtiff.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (c) 1988-1997 Sam Leffler 5 | 6 | Copyright (c) 1991-1997 Silicon Graphics, Inc. 7 | 8 | 9 | 10 | Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose 11 | is hereby granted without fee, provided that (i) the above copyright notices and this permission 12 | notice appear in all copies of the software and related documentation, and (ii) the names of Sam 13 | Leffler and Silicon Graphics may not be used in any advertising or publicity relating to the software 14 | without the specific, prior written permission of Sam Leffler and Silicon Graphics. 15 | 16 | THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, 17 | INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. 18 | 19 | IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR 20 | CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR 21 | PROFITS, WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING 22 | OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 23 | 24 | 25 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/mpich2.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | COPYRIGHT 5 | 6 | 7 | 8 | The following is a notice of limited availability of the code, and disclaimer which must be included in 9 | the prologue of the code and in all source listings of the code. 10 | 11 | Copyright Notice 12 | 13 | 14 | + 2002 University of Chicago 15 | 16 | 17 | Permission is hereby granted to use, reproduce, prepare derivative works, and to redistribute to others. 18 | This software was authored by: 19 | 20 | Argonne National Laboratory Group W. Gropp: (630) 252-4318; FAX: (630) 252-5986; e-mail: 21 | gropp@mcs.anl.gov E. Lusk: (630) 252-7852; FAX: (630) 252-5986; e-mail: lusk@mcs.anl.gov Mathematics 22 | and Computer Science Division Argonne National Laboratory, Argonne IL 60439 23 | 24 | GOVERNMENT LICENSE 25 | 26 | Portions of this material resulted from work developed under a U.S. Government Contract and are subject 27 | to the following license: the Government is granted for itself and others acting on its behalf a 28 | paid-up, nonexclusive, irrevocable worldwide license in this computer software to reproduce, prepare 29 | derivative works, and perform publicly and display publicly. 30 | 31 | DISCLAIMER 32 | 33 | This computer code material was prepared, in part, as an account of work sponsored by an agency of the 34 | United States Government. Neither the United States, nor the University of Chicago, nor any of their 35 | employees, makes any warranty express or implied, or assumes any legal liability or responsibility for 36 | the accuracy, completeness, or usefulness of any information, apparatus, product, or process 37 | disclosed, or represents that its use would not infringe privately owned rights. 38 | 39 | 40 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/psfrag.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | psfrag.dtx 5 | 6 | 7 | 8 | Copyright (C) 1996 Craig Barratt, Michael C. Grant, and David Carlisle. 9 | 10 | All rights are reserved. 11 | 12 | 13 | 14 | This system is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the 15 | implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Don't come complaining to us if 16 | you modify this file and it doesn't work! If this file is modified by anyone but the authors, those 17 | changes and their authors must be explicitly stated HERE. 18 | 19 | 20 | -------------------------------------------------------------------------------- /license_identifier/data/license_dir/zlib-acknowledgement.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (c) 2002-2007 Charlie Poole 5 | 6 | Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov 7 | 8 | Copyright (c) 2000-2002 Philip A. Craig 9 | 10 | 11 | This software is provided 'as-is', without any express or implied warranty. In no event will the authors 12 | be held liable for any damages arising from the use of this software. 13 | 14 | Permission is granted to anyone to use this software for any purpose, including commercial applications, 15 | and to alter it and redistribute it freely, subject to the following restrictions: 16 | 17 | 18 | 19 | 20 | 21 | 1. 22 | The origin of this software must not be misrepresented; you must not claim that you wrote the 23 | original software. If you use this software in a product, an acknowledgment (see the 24 | following) in the product documentation is required. 25 | Portions Copyright (c) 2002-2007 Charlie Poole or Copyright (c) 2002-2004 James W. Newkirk, 26 | Michael C. Two, Alexei A. Vorontsov or Copyright (c) 2000-2002 Philip A. Craig 27 | 28 | 29 | 30 | 31 | 2. 32 | Altered source versions must be plainly marked as such, and must not be misrepresented as being 33 | the original software. 34 | 35 | 36 | 37 | 3. 38 | This notice may not be removed or altered from any source distribution. 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /license_identifier/location_result.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2017, The Linux Foundation. All rights reserved. 2 | # 3 | # Redistribution and use in source and binary forms, with or without 4 | # modification, are permitted provided that the following conditions are 5 | # met: 6 | # * Redistributions of source code must retain the above copyright 7 | # notice, this list of conditions and the following disclaimer. 8 | # * Redistributions in binary form must reproduce the above 9 | # copyright notice, this list of conditions and the following 10 | # disclaimer in the documentation and/or other materials provided 11 | # with the distribution. 12 | # * Neither the name of The Linux Foundation nor the names of its 13 | # contributors may be used to endorse or promote products derived 14 | # from this software without specific prior written permission. 15 | # 16 | # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED 17 | # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 18 | # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT 19 | # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS 20 | # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 21 | # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 22 | # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR 23 | # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 24 | # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 25 | # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN 26 | # IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 | # 28 | # SPDX-License-Identifier: BSD-3-Clause 29 | 30 | from collections import namedtuple 31 | 32 | LocationResult = namedtuple("LocationResult", 33 | ["start_line", 34 | "end_line", 35 | "start_offset", 36 | "end_offset", 37 | "score", 38 | "start_line_orig", 39 | "end_line_orig"]) 40 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | git+https://github.com/codeauroraforum/comment-filter@v1.0.0 2 | chardet==2.3.0 3 | future==0.15.2 4 | html5lib==0.999999999 5 | nltk==3.4.5 6 | pyyaml==4.2b4 7 | rdflib==4.2.2 8 | six==1.10.0 9 | -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | mock==2.0.0 2 | pytest==3.0.5 3 | pytest-cov==2.4.0 4 | -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- 1 | [tox] 2 | +envlist = py{27,36,37,py} 3 | 4 | [testenv] 5 | deps = -rrequirements.txt 6 | -rtest-requirements.txt 7 | commands = py.test --cov-config=.coveragerc --cov=. --cov-report term-missing 8 | coverage xml -o ../coverage.xml 9 | changedir = license_identifier 10 | --------------------------------------------------------------------------------